关于连接表的问题

发布于 2024-11-08 18:40:00 字数 144 浏览 0 评论 0原文

下面的sql语句实际上是什么样的连接?

select * 
from table1 tbl1, table2 tbl2 
where tbl1.id = tbl2.id

仅当两个 id 匹配时才返回结果吗?

What kind of join is actually for the following sql statement?

select * 
from table1 tbl1, table2 tbl2 
where tbl1.id = tbl2.id

Does it only return result if both id matches?

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

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

发布评论

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

评论(2

他夏了夏天 2024-11-15 18:40:00

这是一个内连接。

是的,只有具有匹配 ID 的记录才会被返回。

这与:

select * 
from table1 tbl1 
 inner join table2 tbl2 
    on tbl1.id = tbl2.id

就个人而言,我更喜欢 INNER JOIN 的显式表示法。

This is an inner join.

Yes, only records that have matching IDs will be returned.

This is the same as:

select * 
from table1 tbl1 
 inner join table2 tbl2 
    on tbl1.id = tbl2.id

Personally, I prefer the explicit notation of INNER JOIN.

删除→记忆 2024-11-15 18:40:00

是的,这是内连接的 ANSI-89 语法。 ANSI-92 定义了 [INNER、LEFT 等...] JOIN 关键字。

Yes, that is ANSI-89 syntax for an inner join. ANSI-92 defines the [INNER,LEFT, etc...] JOIN keywords.

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