oracle 內串連和外串連,oracle內串連

來源:互聯網
上載者:User

oracle 內串連和外串連,oracle內串連

內串連:就是我們平時的表串連,顯示id相匹配的資料

SELECT * FROM a,b WHERE a.aid=b.bid僅僅取出的是匹配的資料。

外串連:分為左串連和右串連

左串連:首先取出左表(a表)的資料,然後加上與右表(b表)匹配的資料,(a表為驅動表,b表為匹配表)

SELECT * FROM a LEFT JOIN b ON a.aid=b.bid; 等同於

    SELECT * FROM a,b WHERE a.aid=b.bid (+);  (+)的一側為匹配表 

右串連:反之,結果集為b表所有的記錄及a表中與b表關聯的記錄;

SELECT * FROM a RIGHT JOIN b ON a.aid=b.bid;  

     SELECT * FROM a,b WHERE a.aid (+)=b.bid; (+)的一側為匹配表 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.