是否有可能获得总表count,并rows在相同的查询。像这样的东西
count
rows
SELECT COUNT(1),* FROM tbl GROUP BY ALL
您可以随时尝试执行以下操作:
SELECT COUNT(*) OVER (), (list of your other columns here) FROM dbo.YourTableNameHere
该OVER()子句将为您提供查询中所有行的计数。
OVER()