MySQL 问题:空表上的 LEFT JOIN

发布于 2024-08-23 20:33:12 字数 468 浏览 5 评论 0原文

给定一个包含两个表 XY 的数据库,我有一个查询应该在属性 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 技术交流群。

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

发布评论

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

评论(3

土豪我们做朋友吧 2024-08-30 20:33:12

由于您没有发布实际的 SQL,所以我只是在这里做出假设。我的经验告诉我,您可能有一个 where 子句导致 SQL 返回空集。

SELECT X.a1, X.a2, Y.b1, Y.b2 FROM X LEFT JOIN Y ON (X.a1 = Y.b1)
WHERE Y.b3 = 'something'

上面的 SQL 将返回空结果集。您可能需要将 SQL 修改为以下格式,将有问题的 where 子句引入 LEFT JOIN ON 子句。

SELECT X.a1, X.a2, Y.b1, Y.b2 FROM X 
LEFT JOIN Y ON (X.a1 = Y.b1 and Y.b3 = 'something')

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.

SELECT X.a1, X.a2, Y.b1, Y.b2 FROM X LEFT JOIN Y ON (X.a1 = Y.b1)
WHERE Y.b3 = 'something'

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.

SELECT X.a1, X.a2, Y.b1, Y.b2 FROM X 
LEFT JOIN Y ON (X.a1 = Y.b1 and Y.b3 = 'something')
紫南 2024-08-30 20:33:12

你的表名有点混乱。是 X 和 Y,还是 Xa 和 Yb?

如果 X 和 Y:

SELECT X.a1, X.a2, Y.a1, Y.b2 FROM X LEFT OUTER JOIN Y ON (X.a1 = Y.b1)

应返回所有 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:

SELECT X.a1, X.a2, Y.a1, Y.b2 FROM X LEFT OUTER JOIN Y ON (X.a1 = Y.b1)

should bring back all X, with nulls for the Y.a1 and Y.b2 where there is no matching record.

千柳 2024-08-30 20:33:12

在某些返回错误的 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.

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