Left Outer Join doesn#39;t return all rows from my left table?(左外连接不会从我的左表中返回所有行?)
问题描述
我正在尝试使用以下查询获取每天打开的页面数.
I am trying to get the number of page opens on a per day basis using the following query.
SELECT day.days, COUNT(*) as opens
FROM day
LEFT OUTER JOIN tracking ON day.days = DAY(FROM_UNIXTIME(open_date))
WHERE tracking.open_id = 10
GROUP BY day.days
我得到的输出是这样的:
The output I get it is this:
days opens
1 9
9 2
问题是,在我的日期表中,我有一列包含数字 1 到 30 来表示一个月中的天数.我做了一个左外连接,我期待在天数列中显示所有天数!
The thing is, in my day table, I have a single column that contains the number 1 to 30 to represent the days in a month. I did a left outer join and I am expecting to have all days show on the days column!
但我的查询正在这样做,为什么会这样?
But my query is doing that, why might that be?
推荐答案
Nanne 的回答 解释了为什么你没有得到想要的结果(你的 WHERE 子句删除了行),但没有说明如何修复它.
Nanne's answer given explains why you don't get the desired result (your WHERE clause removes rows), but not how to fix it.
解决方案是将 WHERE 改为 AND 使条件成为连接条件的一部分,而不是连接后应用的过滤器:
The solution is to change WHERE to AND so that the condition is part of the join condition, not a filter applied after the join:
SELECT day.days, COUNT(*) as opens
FROM day
LEFT OUTER JOIN tracking
ON day.days = DAY(FROM_UNIXTIME(open_date))
AND tracking.open_id = 10
GROUP BY day.days
现在左表中的所有行都将出现在结果中.
Now all rows in the left table will be present in the result.
这篇关于左外连接不会从我的左表中返回所有行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:左外连接不会从我的左表中返回所有行?


- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 更改自动增量起始编号? 2021-01-01