Let’s say you have a result set with 5000 records but you want to display only 100 of them and in the same time to display the count of ALL records (5000).
Let's say you have a table, ContactProperty where a Contact can have more properties:
CONTACTID PROPERTYID
1 10
1 10
2 20
So, the next script returns the top 100 UNIQUE contactidIds.
;with res (RowNo, contactid)
AS
(
SELECT
Rank() OVER (ORDER BY contactid) RowNo,
contactid
FROM
ContactProperty
GROUP BY
contactid
)
The value of RowNo from the first record represents the COUNT(*) of the whole result set, in this case I have 54977 rows but this returns only 100 of them.
This is a particular case but you can remove the "GROUP BY".
ENJOY!
Luigi
Last edited by halford13; Nov 11th, 2009 at 08:41 AM.