gpt4 book ai didi

mysql - mysql如何检索多列数据

转载 作者:行者123 更新时间:2023-11-29 07:50:00 24 4
gpt4 key购买 nike

表名为Test。包含三列id、category、units

插入的值为:(101,a,10),(102,b,30),(101,a,20)。

'a'id=101countsum 'a' 单位的类别中出现了多少次。

预期输出为(resultset):totala=2,counttotal=30 (2,30)

最佳答案

尝试此查询

SELECT COUNT(*) AS rows, SUM(units) AS counttotal
FROM Test
WHERE id= '101';

关于mysql - mysql如何检索多列数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26729371/

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