MySQL 问题:空表上的 LEFT JOIN
给定一个包含两个表 X
和 Y
的数据库,我有一个查询应该在属性 X.a1 上
和 LEFT JOIN
这两个表Y.b1
。我使用了以下查询:
SELECT X.a1, X.a2, Y.b1, Y.b2 FROM X LEFT JOIN Y ON (X.a1 = Y.b1)
我认为这足以工作,即使 Y
当前是一个空表。但是,查询似乎因表 Y
为空而中断。有没有办法重新格式化此查询,以便即使 Y
是空表,LEFT JOIN
也不会中断?或者我是否只需要始终确保表 Y
中有一些数据,即使它与表 X
中的任何内容都不匹配(因此 LEFT加入
)。
Given a database with two tables X
and Y
, I have a query that should LEFT JOIN
the two tables on attributes X.a1
and Y.b1
. I used the following query:
SELECT X.a1, X.a2, Y.b1, Y.b2 FROM X LEFT JOIN Y ON (X.a1 = Y.b1)
I thought that would be good enough to work, even if Y
is currently an empty table. However, the query breaks because table Y
is empty, it seems. Is there any way to reformat this query so that even if Y
is an empty table, the LEFT JOIN
will not break? Or do I just need to always make sure that there is some data in table Y
, even if it doesn't match anything in table X
(hence the LEFT JOIN
).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
由于您没有发布实际的 SQL,所以我只是在这里做出假设。我的经验告诉我,您可能有一个 where 子句导致 SQL 返回空集。
上面的 SQL 将返回空结果集。您可能需要将 SQL 修改为以下格式,将有问题的 where 子句引入 LEFT JOIN ON 子句。
Since you didn't post your actual SQL, i just make assumption here. My experience telling me that you might have a where clause that causes the SQL to return empty set.
The above SQL will return empty result set. You may need to modify your SQL into the following format, by bring up the problematic where clause to LEFT JOIN ON clause.
你的表名有点混乱。是 X 和 Y,还是 Xa 和 Yb?
如果 X 和 Y:
应返回所有 X,其中没有匹配记录的 Y.a1 和 Y.b2 为空。
Your table names are a little confusing. Is it X and Y, or X.a and Y.b?
If X and Y:
should bring back all X, with nulls for the Y.a1 and Y.b2 where there is no matching record.
在某些返回错误的 Sql 编辑器上尝试查询,例如
HeidiSQL 或类似的。就我而言,问题是 WHERE 子句中的 id 不明确。
Try your query on some Sql editor that returns errors like
HeidiSQL or similar. In my case the problem was ambiguous id in WHERE clause.