Есть ли способ выбрать top @top, определяющий значение с помощью переменной, подобной следующему коду в SQL Server 2008?
declare @top as integer;
set @top=100;
SELECT top @top
T1.id as clientInfoId
,T1.ucsId
,T1.phoneHome
... (more columns here)......
,T1.businessTitle
FROM
YELLOW_OUT_CLIENT_INFO AS T1
LEFT JOIN
YELLOW_OUT_BUSINESS T2 on T2.clientInfoId = T1.id
WHERE
T1.AgentId=5
AND
T1.deleted IS NULL
... (more conditions here)......
ORDER BY NEWID()