I know I can get the top X records in a query using TOP, but is there an easy way to get everything else?
For example, I need to report the top 25 items and their associated $$ by category. I have that part down. Next I need the $$ for all the other items not in that top list…
is there an easier way than to pull it all except WHERE not in (TOP query) ??