This is a discussion on rowcount help within the SQL Server forums, part of the Microsoft SQL Server category; --> i'm trying to get total rows found by query that uses top clause... for example: select top 10 myTable.* ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| i'm trying to get total rows found by query that uses top clause... for example: select top 10 myTable.* from myTable where myTable.number > 200 let's say there are 13 rows matching that condition, and by using @@rowcount my result would be: 10. is there any way to get total row count, without affecting the TOP clause??? i believe that the mysql equivalent would be SQL_CALC_FOUND_ROWS(). tnx... |
| ||||
| I answered this question in microsoft.public.sqlserver.server. It's bad etiquette to post the same question independently to multiple groups because that causes unnecessary duplication of effort by persons trying to help. If you have a question appropriate for multiple groups, specify all groups in a single post so that all responses appear in all groups. -- Hope this helps. Dan Guzman SQL Server MVP "D.B." <dejan.bukovic@gmail.com> wrote in message news:1148128056.678229.59640@i39g2000cwa.googlegro ups.com... > i'm trying to get total rows found by query that uses top clause... > > for example: > select top 10 myTable.* from myTable where myTable.number > 200 > > > let's say there are 13 rows matching that condition, and by using > @@rowcount my result would be: 10. > > > is there any way to get total row count, without affecting the TOP > clause??? i believe that the mysql equivalent would be > SQL_CALC_FOUND_ROWS(). > > > tnx... > |