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

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/12 05:35:57

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