gpt4 book ai didi

mysql - 计算mysql中某些字段的总数?

转载 作者:行者123 更新时间:2023-11-29 04:07:54 25 4
gpt4 key购买 nike

我有一张这样的 table

item_id  item_quantity
----------------------
324 2

432 23

543 12

879 3

item_id 字段不是自动递增的,但它是唯一的。

查询的输入将是一些 item_id 值,结果应该是 item_quantity 中这些值的总和。

例如,如果输入是 324, 543,则查询应返回 14 (2 + 12)

是否可以在 mysql 级别执行此操作?

最佳答案

尝试使用在:

SELECT SUM(item_quantity)
FROM table
WHERE item_id in (324,543)

关于mysql - 计算mysql中某些字段的总数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24165660/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com