MySQL 计数未针对特定 ID 返回 0
我有以下代码:
SELECT c.c_id, c_name, count(h.h_id) AS count
FROM c
LEFT JOIN h ON h.h_id = c.c_id
WHERE h.info_id = 25
AND c.c_id = {$sqlrow['c_id']}
GROUP BY c.c_id
我使用 PHP 在 WHERE 语句中选择 c_id
,不幸的是,如果 c_id
的 h_id 计数为 0
则不会选择任何行。有没有办法让 SQL 将没有选择的行表示为 0 计数?
因为 PHP 中的 WHERE
循环没有为特定 c_id
选择任何行,所以似乎会跳过该行。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
怎么样:
What about:
使用 PHP 和 mySQL,当我可能遇到这种情况时,我会直接在查询下使用一个简单的 IF 语句,就像
我希望这能让您走上正确的道路一样,是的,我知道 SQL 是无效的,它与您已经拥有的无关您的 SQL - 它仅用于演示目的。
With PHP and mySQL when I may run into this type of situation I use a simple IF statement directly under the query like
I hope this gets you on the right path, and yeah, I know the SQL is invalid, it's irrelevant as you already have your SQL - it is just for demonstration purposes.
通过将 h 表上的条件放入 where 子句,它将左连接转换为内连接。因为如果左连接中 h.info 的列值为 null,则 where 子句条件永远不会为 true,因此该行将被过滤掉。
by putting a condition on the h table into the where clause, it converts left join to inner join. Because the where clause condition will never be true if the column value for h.info is null from the left join, so the row is filtered out.