Let's say this is my DB table: id, client_id, order_name
Every doubled order is creating new record. For example:
1, 1, super-glue
2, 1, super-glue
3, 1, plastic wallet
How do I found in single query, how many different items client ordered?
So it will return me 2 in this case.
I know I have to use SELECT {something in here} WHERE client_id = 1
But I'm not sure about how to count different items.
To just count the different items for one customer you can use
If you want a summary count for every customer you can use a
group by
expression:If you want the latest row for every customer and order_name, you can use a subquery:
This would select the maximum id for each distinct customer-order-combination and then get the corresponding row data.
Finally, in MySQL you can also get a comma-separated list of the distinct items ordered by any customer: