I have two tables: products and orders. Orders references products via ProductID as a foreign key. I want to know how many times each product has been sold, including the product being sold only once. I can almost get it to work using a left join, but that still gives one row with a count of one for all products, regardless of whether they exist in the orders table or not.
Is there a way to do this that will have you ending up with something like this?
Product | Times sold
Milk | 5
Break | 18
Cheese | 0
... and so on.
LEFT JOINto be anINNER JOINinstead. – Joe Stefanelli Jan 30 '12 at 17:01LEFT JOINis the right thing to do, specially if in your example you want to list "cheese", wich has been sold zero times – Lamak Jan 30 '12 at 17:020, not1. Which is the difference betweenCOUNT(id)andCOUNT(*)– MatBailie Jan 30 '12 at 17:08