Question : TOP and ROWCOUNT return different record sets

I have a query which can be written in two ways

Please refer the code snippet for Scenario 1 and 2

Both these scenarios are returning different record sets. Is this an expected behaviour?
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
Scenario 1
 
SELECT TOP(50) * from table order by column1 ASC
 
Scenario 2 
 
SET ROWCOUNT=50
SELECT * from table order by column1 ASC
Open in New Window Select All

Answer : TOP and ROWCOUNT return different record sets

Hello Kanchipuramdeena,

Try running these, and see if you get identical results:

SET ROWCOUNT 50
SELECT * from table order by TimeStamp ASC, ID ASC

SELECT TOP(50) * from table order by TimeStamp ASC, ID ASC

Regards,

Patrick
Random Solutions  
 
programming4us programming4us