vote up 5 vote down star
4

How can I have a dynamic variable setting the amount of rows to return in SQL Server? Below is not valid syntax in SQL Server 2005+:

DECLARE @count int
SET @count = 20

SELECT TOP @count * FROM SomeTable
flag

80% accept rate
Are you running SQL 2005 or 2008? – Brian Kim Oct 6 '08 at 20:11
Running SQL Server 2005 currently – eddiegroves Oct 6 '08 at 20:22
Yet another reason why stored procs suck... – Orion Edwards Oct 6 '08 at 21:52

4 Answers

vote up 10 vote down check
SELECT TOP (@count) * FROM SomeTable

This will only work with SQL 2005+

link|flag
I always forget the parentheses too. – John Sheehan Oct 6 '08 at 20:10
vote up 0 vote down

Its also possible to use dynamic SQL and execute it with the exec command:

declare @sql  nvarchar(200), @count int
set @count = 10
set @sql = N'select top ' + cast(@count as nvarchar(4)) + ' * from table'
exec (@sql)
link|flag
vote up 4 vote down

In x0n's example, it should be:

SET ROWCOUNT @top

SELECT * from sometable

SET ROWCOUNT 0

http://msdn.microsoft.com/en-us/library/ms188774.aspx

link|flag
vote up 8 vote down

The syntax "select top (@var) ..." only works in SQL SERVER 2005+. For SQL 2000, you can do:

set rowcount @top

select * from sometable

set rowcount 0

Hope this helps

Oisin.

(edited to replace @@rowcount with rowcount - thanks augustlights)

link|flag
I've heard that it is possible to get incorrect row number with @@RowCount if you have multi-column primary key. Is that true? – Brian Kim Oct 6 '08 at 20:40
This will not work, @@rowcount is a global variable, not a query option. Should be SET ROWCOUNT @top ... – AugustLights Oct 6 '08 at 21:28
Thanks AugustLights - was pulling that from memory. – x0n Oct 6 '08 at 22:22

Your Answer

Get an OpenID
or

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