|
|
|
Here is one example of a correlated query. This example uses a table that contains messages for each user. This can be used to delete all but the 2 latest messages. |
Click here to copy the following block | CREATE TABLE #msg_tbl ( id int identity , userid int , msgid int , msgdate datetime );
INSERT INTO #msg_tbl VALUES ( 1 , 1 , '1/1/00' ); INSERT INTO #msg_tbl VALUES ( 1 , 2 , '1/2/00' ); INSERT INTO #msg_tbl VALUES ( 1 , 3 , '1/3/00' ); INSERT INTO #msg_tbl VALUES ( 2 , 1 , '2/1/00' ); INSERT INTO #msg_tbl VALUES ( 2 , 2 , '2/2/00' ); INSERT INTO #msg_tbl VALUES ( 2 , 3 , '2/3/00' ); INSERT INTO #msg_tbl VALUES ( 2 , 4 , '2/4/00' ); INSERT INTO #msg_tbl VALUES ( 3 , 1 , '3/1/00' ); INSERT INTO #msg_tbl VALUES ( 3 , 2 , '3/2/00' ); SELECT * FROM #msg_tbl;
GO
BEGIN TRAN DELETE #msg_tbl WHERE ( SELECT COUNT(*) FROM #msg_tbl t2 WHERE t2.userid = #msg_tbl.userid And t2.msgdate >= #msg_tbl.msgdate ) > 2; SELECT * FROM #msg_tbl;
ROLLBACK;
BEGIN TRAN DELETE #msg_tbl WHERE #msg_tbl.id NOT IN ( SELECT TOP 2 t2.id FROM #msg_tbl t2 WHERE t2.userid = #msg_tbl.userid ORDER BY t2.msgdate DESC); SELECT * FROM #msg_tbl;
ROLLBACK; |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|