select * from table_a a,table_b b where a.col1 = b.col1(+) ;最后的(+)怎么解释?

来源:学生作业帮助网 编辑:六六作业网 时间:2024/07/09 00:34:42
select*fromtable_aa,table_bbwherea.col1=b.col1(+);最后的(+)怎么解释?select*fromtable_aa,table_bbwherea.col1

select * from table_a a,table_b b where a.col1 = b.col1(+) ;最后的(+)怎么解释?
select * from table_a a,table_b b where a.col1 = b.col1(+) ;最后的(+)怎么解释?

select * from table_a a,table_b b where a.col1 = b.col1(+) ;最后的(+)怎么解释?
代表右外部连接,相当于right join