vote up 3 vote down star
1

What is the different between

Set Rowcount X

And

Select Top X *
From Z

In TSQL?

flag
3  
Why did u make this community wiki? It's perfectly reasonable question. – Kev May 14 at 14:44
This is great question shouldn't be wiki – Josh May 14 at 14:54
Cause it wasn't really for me, I wanted to contribute to the community knowledge base. – C. Ross May 14 at 15:34

3 Answers

vote up 2 vote down check

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.

http://technet.microsoft.com/en-us/library/ms189463.aspx

link|flag
vote up 3 vote down

The main difference is that top will only effect the query you are running while set rowcount will persist with the connection and apply to all queries executed within that connection.

link|flag
vote up 1 vote down

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:

declare @rc int

set @rc=10

select top @rc * from myTable --Wont work

set rowcount @rc
select * from myTable --Will work
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.