Como posso ter uma variável dinâmica definindo a quantidade de linhas a retornar no SQL Server? Abaixo não há sintaxe válida no SQL Server 2005+:
DECLARE @count int
SET @count = 20
SELECT TOP @count * FROM SomeTable
2
Você está executando o SQL 2005 ou 2008?
—
Brian Kim
Atualmente executando o SQL Server 2005
—
eddiegroves 6/08