使用两个以上的表进行联接

发布于 2024-10-15 01:04:01 字数 25 浏览 3 评论 0原文

如何将一张表与两张以上的表连接起来?

How to join one table with more than two tables?

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

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

发布评论

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

评论(3

欲拥i 2024-10-22 01:04:01

这可能就是您正在寻找的。

select * from Table1 a
join table2 b on (a.column = b.column)
join table3 c on (a.column = c.column)

但我建议您学习有关如何编写查询以减少基本语句的停机时间的教程。

This might be what you are looking for.

select * from Table1 a
join table2 b on (a.column = b.column)
join table3 c on (a.column = c.column)

But I suggest you pick up a tutorial on how to write queries to decrease downtime on basic statements.

热风软妹 2024-10-22 01:04:01
SELECT * FROM a JOIN b JOIN c JOIN d

这将执行笛卡尔积,因为没有连接条件,但 a 已与三个表连接。也许你的问题需要更具体。

SELECT * FROM a JOIN b JOIN c JOIN d

This will do a cartesian product because there is no join conditions, but a has been joined with three tables. Maybe your question needs to be more specific.

绝影如岚 2024-10-22 01:04:01
select * from table1 a,table2 b,table3 c where a.col=b.col and a.col=c.col
select * from table1 a,table2 b,table3 c where a.col=b.col and a.col=c.col
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文