What is the different between
Set Rowcount X
And
Select Top X *
From Z
In TSQL?
|
1
|
|||||||||
|
|
|
Top can do a few more things for you. For one, you can specify a percentage, instead of an integer. You can also handle situations where ties in column values occur. |
|||
|
|
|
|
The main difference is that |
|||
|
|
|
|
In older versions of SQL Server (2005 and earlier I am not sure about 2008) you could not use a variable in a top statement so:
|
|||
|
|