gpt4 book ai didi

sql - Oracle 连接运算符

转载 作者:行者123 更新时间:2023-12-04 21:54:03 24 4
gpt4 key购买 nike

如何重写:

select tab1.id, tab2.id, tab3.id 
from tab1, tab2, tab3
where tab1.col1 = tab2.col1(+) and tab2.col2 = tab3.col2(+);

使用 OUTER JOIN 语法?

最佳答案

select tab1.id, tab2.id, tab3.id 
from tab1
left outer join tab2 on tab1.col1 = tab2.col1
left outer join tab3 on tab2.col2 = tab3.col2;

关于sql - Oracle 连接运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/325852/

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