1. 程式人生 > >oracle左關聯+號表示方式

oracle左關聯+號表示方式

mage sql 關聯 bubuko 語句 alt span 結果 sql語句

1.emp表和dept表

技術分享圖片

2.emp表中empno為8888的這條數據,沒有部門編號,以emp表為主表,左關聯查詢部門信息sql語句如下:

  select * from emp e,dept d where e.deptno = d.deptno(+);

  查詢出來結果:

   技術分享圖片

3.解釋:where條件後

    左關聯屬性 = 右關聯屬性(+);

    左關聯屬性(+) = 右關聯屬性;

    +號在哪邊,哪邊的表殘。

oracle左關聯+號表示方式