MySQL 5.0.45
Table A has the following fields (columns):
1. transcation_id
2. client_name
3. item_id
4. .....
Now I need to find how many transactions each client has made order by # of transactions. The result should be like:
Tom 7 transactions
Jack 5 transactions
Mike 2 transactions
If a client has no transactions his name should not be int he list.
Thank you in advance!