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
|
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+:
|
||||||
|
|
|
This will only work with SQL 2005+ |
||
|
|
|
Its also possible to use dynamic SQL and execute it with the exec command:
|
||
|
|
|
|
In x0n's example, it should be:
|
||
|
|
|
|
The syntax "select top (@var) ..." only works in SQL SERVER 2005+. For SQL 2000, you can do:
Hope this helps Oisin. (edited to replace @@rowcount with rowcount - thanks augustlights) |
||||||
|