gpt4 book ai didi

oracle - 如何在三个表上使用连接

转载 作者:行者123 更新时间:2023-12-04 02:24:10 25 4
gpt4 key购买 nike

我有三张 table

表1、表2和表3。

Table1 具有列 ID。Table2 具有列名 ID、Name。表三具有列名称 Name。

现在我想从 Table2 中的 table1 中检索 ID,以便与表中的 ID 关联的名称应该在 Table3 中。

Table1.ID=Table2.ID(Table2.Name=Table3.Namw)。

不使用 IN 运算符。仅连接。

最佳答案

select table1.id, table2.name
from table1
join table2 on table2.id = table1.id
join table3 on table3.name = table2.name

关于oracle - 如何在三个表上使用连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6289398/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com