3

How do we find the top 2 most populated cities i.e where no. of customers are higher than any other

1 Answer 1

3

Assuming your schema looks like:

Customers
  -City
  -SSN

You should be able to simply use limit:

select City, count(SSN)
from Customers
group by City
order by count(SSN) desc
limit 2
Sign up to request clarification or add additional context in comments.

1 Comment

If you want to restrict the results in some way further, then yes. But this is sufficient for the question you asked.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.