添加 LEFT JOIN 后损坏的计数(*)

发布于 2024-08-27 14:55:37 字数 721 浏览 4 评论 0原文

自从将 LEFT JOIN 添加到下面的查询后,count(*) 一直返回一些奇怪的值,它似乎已将查询中返回的总行数添加到“级别”:

SELECT `n`.*, exp_channel_titles.*, round((`n`.`rgt` - `n`.`lft` - 1) / 2, 0) AS childs,  
count(*) - 1 + (`n`.`lft` > 1) + 1 AS level,  
((min(`p`.`rgt`) - `n`.`rgt` - (`n`.`lft` > 1)) / 2) > 0 AS lower,  
(((`n`.`lft` - max(`p`.`lft`) > 1))) AS upper  
FROM `exp_node_tree_6` `n` 
    LEFT JOIN `exp_channel_titles` 
    ON (`n`.`entry_id`=`exp_channel_titles`.`entry_id`), 
    `exp_node_tree_6` `p`,  
    `exp_node_tree_6`  
WHERE `n`.`lft`  
BETWEEN `p`.`lft`  
AND `p`.`rgt`  
AND ( `p`.`node_id` != `n`.`node_id` OR `n`.`lft` = 1 ) 
GROUP BY `n`.`node_id`  
ORDER BY `n`.`lft`

我完全被难住了......谢谢!

Since adding the LEFT JOIN to the query below, the count(*) has been returning some strange values, it seems to have added the total rows returned in the query to the 'level':

SELECT `n`.*, exp_channel_titles.*, round((`n`.`rgt` - `n`.`lft` - 1) / 2, 0) AS childs,  
count(*) - 1 + (`n`.`lft` > 1) + 1 AS level,  
((min(`p`.`rgt`) - `n`.`rgt` - (`n`.`lft` > 1)) / 2) > 0 AS lower,  
(((`n`.`lft` - max(`p`.`lft`) > 1))) AS upper  
FROM `exp_node_tree_6` `n` 
    LEFT JOIN `exp_channel_titles` 
    ON (`n`.`entry_id`=`exp_channel_titles`.`entry_id`), 
    `exp_node_tree_6` `p`,  
    `exp_node_tree_6`  
WHERE `n`.`lft`  
BETWEEN `p`.`lft`  
AND `p`.`rgt`  
AND ( `p`.`node_id` != `n`.`node_id` OR `n`.`lft` = 1 ) 
GROUP BY `n`.`node_id`  
ORDER BY `n`.`lft`

I'm totally stumped... Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

太阳哥哥 2024-09-03 14:55:37

如果您想知道计数,只需运行不带 group by 的查询即可。您将看到计数中的行来自何处​​。

在您的情况下,您可以通过将 count(*) 更改为 count unique(n.entry_id) 来修复此问题。

If you wonder about a count, just run the query without a group by. You'll see where the rows in the count come from.

In your case, you could probably fix it by changing count(*) to count distinct(n.entry_id).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文