vote up 1 vote down star

For example, using the answer for this question:

http://stackoverflow.com/questions/152024/how-to-select-all-users-who-made-more-than-10-submissions "How to select all users who made more than 10 submissions."

select userId
from submission   
group by userId
having count(submissionGuid) > 10

Let's say now I want to know many rows this sql statement outputted. How scalable is the solution for counting the rows of counting the rows?

flag

14% accept rate

3 Answers

vote up 5 vote down

Slight error in previously posted example, need an alias for a table name for the subquery:


select count(*) from
  (select userId
   from submission 
   group by userId
   having count(submissionGuid) > 10) t

I'm not sure about scalability, but this is the solution. If this isn't scaling well enough for you, you need to consider major design changes, like perhaps tracking those who submitted more than 10 submissions in a separate table that you update through applications that populate the submissions. Or many other possible solutions.

link|flag
No need for the alias in Oracle. You do need it in SQL Server. Good catch. – BQ Oct 29 '08 at 4:50
vote up 2 vote down

In SQL Server you could do

select @@ROWCOUNT

immediately following the query you posted.

link|flag
vote up 2 vote down

Nested queries:

select count(*) from
  (select userId
   from submission   
   group by userId
   having count(submissionGuid) > 10) n

Edited to incorporate mbrierst's comment about needing an alias (the "n" at the end) for the nested subquery. Oracle does not require this, but SQL Server does. Feel free to add a comment regarding usage on other database platforms.

link|flag
Sorry, I almost only know SQL Server. That's a nice sounding Oracle feature though, the SQL Server alias requirement always annoys me. – mbrierst Oct 31 '08 at 16:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.