Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

TIA for any help/advice/further reading.

I'm trying to make SQLDev do a count of how many packages customers have had and then only show the top 10 of those results.

So I have this....

    select  pickup_customer , count (pickup_customer)
from 
( select pickup_customer, count (pickup_customer)
    from manifest
   order by count (pickup_customer) desc ) 
 where ROWNUM <= 10
 group by pickup_customer
 order by count (pickup_customer) desc

With that I'm getting 'Not a single group function' and I can't figure out where it's gone wrong. Probably very simple fix, I just can't see it right now!

EDIT: I have tried this code but am getting a 'missing right parenthesis ' error now!

select  pickup_customer , count (pickup_customer)
from 
(select pickup_customer, count (pickup_customer) --sub-query which pre-orders the results for rownum to then limit.
    from manifest
   order by count (pickup_customer) desc 
   group by pickup_customer)
 where ROWNUM <= 10    -- limits the results to be only the top 10
share|improve this question
1  
Your order by and the group by are the wrong way around in the second query. – Ben Nov 12 '12 at 10:22

1 Answer

The following query should work.

SELECT pickup_customer, COUNT (pickup_customer)
FROM enrollment
WHERE ROWNUM <= 10
GROUP BY pickup_customer
ORDER BY COUNT (pickup_customer) DESC
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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