如何在MySQL中进行完全外连接

发布于 2024-12-16 00:42:30 字数 255 浏览 0 评论 0原文

我有两个表

t1(id,c)
values = (1,aa),(2,bb),(3,cc)

t2(id,c)
values = (2,bbb),(3,ccc),(4,ddd)

,我需要一个查询来生成:

1,aa,null,null
2,bb,2,bbb
3,cc,3,ccc
null,null,4,ddd

Can this be did in MySql?

I have two tables

t1(id,c)
values = (1,aa),(2,bb),(3,cc)

t2(id,c)
values = (2,bbb),(3,ccc),(4,ddd)

I need a query that will produce:

1,aa,null,null
2,bb,2,bbb
3,cc,3,ccc
null,null,4,ddd

Can this be done in MySql?

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

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

发布评论

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

评论(3

烂人 2024-12-23 00:42:31

它称为完全外连接,但是http://dev.mysql。 com/doc/refman/5.0/en/join.html 表示 MySQL 不支持它,但您可以使用 UNION 进行模拟。

在页面上搜索“完全外部联接”。

It is called a full outer join, but http://dev.mysql.com/doc/refman/5.0/en/join.html says it is not supported in MySQL, but that you can emulate with a UNION.

Search for "Full outer join" on the page.

旧人九事 2024-12-23 00:42:31

您正在寻找外部联接。 MySQL 不直接支持这一点。

但是,这里< /a> 一篇描述如何在 MySQL 中执行完全外连接的博客。

You're looking for an outer join. MySQL doesn't support this directly.

However, here's a blog describing how to do a full outer join in MySQL.

人事已非 2024-12-23 00:42:30
select t1.id,t1.c, t2.id, t2.c
FROM t1
LEFT JOIN t2 on t1.id=t2.id
UNION
select t1.id,t1.c, t2.id, t2.c
FROM t2
LEFT JOIN t1 on t1.id=t2.id

基于阿尔宾的回应。

select t1.id,t1.c, t2.id, t2.c
FROM t1
LEFT JOIN t2 on t1.id=t2.id
UNION
select t1.id,t1.c, t2.id, t2.c
FROM t2
LEFT JOIN t1 on t1.id=t2.id

based on albin's response.

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