SELECT users.id, COUNT(?) FROM orders
INNER JOIN users ON (orders.user_id = users.id)
WHERE ??

How can i output:

UserID: 123 has made 22 orders
UserID: 124 has made 2 orders

and so on?

I would like to only grab the users that has one or more orders, and exclude those with 0 orders.

link|improve this question

77% accept rate
feedback

2 Answers

up vote 1 down vote accepted
SELECT users.id, COUNT(*) FROM orders
INNER JOIN users ON (orders.user_id = users.id)
group by users.id
having count(*)>=1
link|improve this answer
feedback
SELECT users.id, COUNT(*) FROM orders
INNER JOIN users ON (orders.user_id = users.id)
GROUP BY users.id
HAVING count(*) >= 1
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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