id partner_id date_created status item_id
3 2 1322861013 redirected 1
4 2 1322943245 redirected 6
5 3 1322943246 redirected 6
6 2 1322943247 redirected 6
我如何计算存在相同item_id的行数?表名称是
orders
以上示例我希望它输出:
There's 3 rows with the item_id 6
There's 1 rows with the item_id 1
我只知道如何通过一些php循环来完成一些复杂的工作
最佳答案
SELECT item_id, COUNT(id) FROM orders
GROUP BY item_id