oracle中的( )是一种特殊的用法,( )表示外连接,并且总是放在非主表的一方,今天小编就来说说关于oracle两表关联带条件如何查询 oracle两表关联中的?下面更多详细答案一起来看看吧!

oracle两表关联带条件如何查询 oracle两表关联中的

oracle两表关联带条件如何查询 oracle两表关联中的

oracle中的( )是一种特殊的用法,( )表示外连接,并且总是放在非主表的一方。

例如:

select a.id,b.id from A a,B b where a.id = b.id( );

等价于左外连接:select a.id,b.id from A a LEFT JOIN B b ON a.id = b.id;

select a.id,b.id from A a,B b where a.id( ) = b.id;

等价于右外连接:select a.id,b.id from A a RIGHT JOIN B b ON a.id = b.id;

,