gpt4 book ai didi

mysql - SQL 查询中的 SUM 字数

转载 作者:可可西里 更新时间:2023-11-01 07:38:17 28 4
gpt4 key购买 nike

我有一个包含 2 个字段的表:

cnt  str
-- -------
60 the
58 of
4 no
30 the
2 of
1 no

我想要这样的结果

cnt  str
-- -------
90 the
60 of
5 no

我如何在表格下方编写一个查询来点赞?

最佳答案

SELECT str, 
SUM (cnt)
FROM table_name
GROUP BY str;

这将按 str 对表进行分组,即所有的将放在一起,然后求和,依此类推。如果你想重命名总和(cnt)使用:

SELECT str, 
SUM (cnt) as cnt
FROM table_name
GROUP BY str;

关于mysql - SQL 查询中的 SUM 字数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53818471/

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