gpt4 book ai didi

mysql - 这个 MySQL 查询有什么问题?需要帮助才能理解

转载 作者:搜寻专家 更新时间:2023-10-30 22:03:47 25 4
gpt4 key购买 nike

我有4张 table ,

countries, states, cities, areas,

除了国家表,其余三个(州、城市、地区)包含 country_id 外键。

我想返回我使用 jon_darstar's 的三个表中 country_id 的总计数解决方案,这是我正在使用的代码。

SELECT COUNT(DISTINCT(states.id)) + COUNT(DISTINCT(cities.id)) + COUNT(DISTINCT(areas.id))
FROM states
JOIN cities on cities.country_id = states.country_id
JOIN areas on areas.country_id = states.country_id
WHERE states.country_id IN (118);

虽然我无法正确理解代码,但上面的代码工作得很好,主要是第一行,即

SELECT COUNT(DISTINCT(states.id)) + COUNT(DISTINCT(cities.id)) + COUNT(DISTINCT(areas.id))

Question 1 : doesn't that select the primary id of the three tables states,cities and areas and make the count? i know this is not happening from the result i am getting then what is actually happening here?

但是,如果我从查询字符串中删除 DISTINCT,它会显示不同的结果,即计数为 120,而实际上它应该是 15(这是所有三个表中 country_id 的计数)。

Question 2 : What is happening if i use DISTINCT and remove DISTINCT? isn't DISTINCT supposed to remove any duplicate values. where is duplication happening here?

谢谢你..

最佳答案

例如,如果在国家 A(主 ID a.id=118)中存在国家 B(主 ID b.id),在该州内有城市 C(主 ID c.id ), C市有区域D(primary id d.id),E(primary id e.id),F(f.id)。让查询结果在数据库表中可视化。

C St Ct Ar


A->B->C->D

A->B->C->E

A->B->C->F

(这里C=国家,St=州,Ct=城市,Ar=地区)

现在想一想,如果您确实依靠上表获得国家 A 内的州总数而没有区分,会发生什么。结果是 3,这样城市数是 3,地区数是 3,总计 9。因为没有distinct 你会得到你不感兴趣的重复值。

现在,如果您使用不同的计数,您将得到正确的结果,因为这里的不同状态如下国家A为1,城市为1,地区为3,共计:5(不包括重复值)..

希望这能奏效!

!!设计问题!!!

想补充一点:从你的数据库设计中,我可以看到你使用国家ID作为国家表(到州、地区和城市)中国家的引用,然后加入州和城市,然后加入州和地区(通过他们的国家ID)你不认为它正在创建交叉连接吗?更好的设计选择是在区域表中保留城市的外键,这种方式自下而上,就像在城市中保留州和在州中保留国家一样。或者为区域制作一张 table 您保留国家、州、城市外键和区域主键的位置。

关于mysql - 这个 MySQL 查询有什么问题?需要帮助才能理解,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5554470/

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