gpt4 book ai didi

mysql - 在 SQL 中计算相同的行值作为一个

转载 作者:行者123 更新时间:2023-11-29 05:52:58 28 4
gpt4 key购买 nike

我有一张这样的 table :

Id     Subdistrict   District
-----------------------------
1 K S
2 K S
3 M S
4 J B
5 J B

如果相同的分区(以及分区)值将计为 1,我希望它返回这样的结果:

Subdistrict = 3 (Because there are only K, M, and J Subdistrict)

District = 2 (Because there are only S and B District)

如何编写sql查询?提前致谢:)

最佳答案

尝试以下查询:

SELECT COUNT(DISTINCT Subdistrict) AS number_of_subdistricts, 
COUNT(DISTINCT District) AS number_of_districts
FROM your_table

关于mysql - 在 SQL 中计算相同的行值作为一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52468079/

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