我有一张这样的表
id | invent_id | order
1 | 95948214 | 70
2 | 46018572 | 30
3 | 46018572 | 20
4 | 46018572 | 50
5 | 36025764 | 60
6 | 36025764 | 70
7 | 95948214 | 80
8 | 95948214 | 90
我希望获得具有相同发明ID的订单数量之和
这就是想要这样的结果
| invent_id | order
| 95948214 | 240
| 46018572 | 100
| 36025764 | 130
我们如何编写mysql查询
答案 0 :(得分:14)
使用聚合函数SUM
并根据invent_id
对其进行分组。
SELECT invent_id, SUM(`order`) `Order`
FROM tableName
GROUP BY invent_ID
<强> GROUP BY clause 强>