gpt4 book ai didi

sql - 双左连接

转载 作者:行者123 更新时间:2023-12-04 10:20:42 26 4
gpt4 key购买 nike

我想接收属性名称和单位计数以及特殊计数。我有这个查询:

SELECT 
`property`.`property_name`,
COUNT(unit_id) AS `units_count`,
COUNT(special_id) AS `specials_count`
FROM `property`
LEFT JOIN `property_unit` ON unit_property_id = property_id
LEFT JOIN `property_special` ON special_property_id = property_id
WHERE (property_id = '1')
GROUP BY `property_id`
ORDER BY `property_name` ASC

但它不能正常工作。如果我有这些左连接之一 - 没关系,但如果我有两个,我会得到这个结果:
["property_name"] => string(11) "Rivers Edge"
["units_count"] => string(1) "2"
["specials_count"] => string(1) "2"

特价商品计数为 2,units_count 为 2,但单位计数实际上为“1”。我怎样才能得到正确的计数?

P.S:对于那些了解 Zend Framework 的人:
$select->setIntegrityCheck(FALSE)
->from(
'property',
array(
'property_name',
)
)
->joinLeft(
'property_unit',
'unit_property_id = property_id',
array(
'units_count' => 'COUNT(unit_id)'
)
)
->joinLeft(
'property_special',
'special_property_id = property_id',
array(
'specials_count' => 'COUNT(special_id)'
)
)
->group('property_id')
->order('property_name');

最佳答案

尝试这个:

SELECT 
`property`.`property_name`,
COUNT(distinct unit_id) AS `units_count`,
COUNT(distinct special_id) AS `specials_count`
FROM `property`
LEFT JOIN `property_unit` ON unit_property_id = property_id
LEFT JOIN `property_special` ON special_property_id = property_id
WHERE (property_id = '1')
GROUP BY `property_id`
ORDER BY `property_name` ASC

编辑:

你不应该总是使用 distinct - 在这种情况下它恰好是正确的选择。
select count(fieldname)返回字段名不为空的次数; select count(distinct fieldname)返回 fieldname 的不同值的数量。

在原始查询中,property_unit 和 property_special 不相互连接,仅连接到属性 - 因此对于具有 5 个单元和 7 个特价的单个属性,将返回 35 行;因此 count(unit_id)count(special_id)都将返回 35。由于 unit_id 将有 5 个不同的值,special_id 将有 7 个不同的值(因为这些字段唯一地标识了它们的记录), count(distinct ...)在这些情况下返回正确的值。

关于sql - 双左连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8416967/

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