I have a SQL Server 2008 query
SELECT TOP 10 * FROM T WHERE ... ORDER BY ...
I\'d like to get also the total number of the rows. The obious
Remove the ORDER BY clause from the 2nd query as well.