Você sempre pode tentar algo assim:
SELECT
COUNT(*) OVER (),
(list of your other columns here)
FROM dbo.YourTableNameHere
O
OVER()
cláusula lhe dará uma contagem de todas as linhas em sua consulta. SELECT
COUNT(*) OVER (),
(list of your other columns here)
FROM dbo.YourTableNameHere
OVER()
cláusula lhe dará uma contagem de todas as linhas em sua consulta.