gpt4 book ai didi

mysql - 计算每个不同状态内的项目

转载 作者:太空宇宙 更新时间:2023-11-03 11:27:02 25 4
gpt4 key购买 nike

abc - 假设有三列:idtitlestatus

select distinct status from abc; 

结果:

home
archive
wait
aauth
impress

select count(distinct status) from abc;

结果:5

我需要的是计算每个不同状态下的项目数:

home       10
archive 14
wait 17
aauth 19
impress 27

有什么帮助吗?

最佳答案

尝试使用 GROUP BY :

SELECT status, COUNT(*) FROM abc GROUP BY status;

关于mysql - 计算每个不同状态内的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53407171/

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