gpt4 book ai didi

mysql - 在 mysql 中使用单个查询计算多个值

转载 作者:太空宇宙 更新时间:2023-11-03 11:31:10 24 4
gpt4 key购买 nike

我有一张 table

Name      CountryCode 
kabul AFG
herat AFG
haag NLD
tilburg NLD
breda NLD
mumbai IND
delhi IND
chennai IND

如果想获取CountryCode AFG 的城市数量,那么我会正确查询从城市中选择 Count(Name) where CountryCode = AFG; 我将得到结果

Count(Name)
2

但是如果我想在单个查询中计算 CountryCode AFG,NLD,IND

count(Name)
2
3
3

我应该如何编写查询以获得上述结果?

最佳答案

SELECT CountryCode, COUNT(*) 
FROM table
WHERE CountryCode IN ('AFG','NLD','IND')
GROUP BY CountryCode;

关于mysql - 在 mysql 中使用单个查询计算多个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49698057/

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