sql 左串連和右串連的提示(left join and right join)

來源:互聯網
上載者:User

下面給一個例子進行說明:


表a

aid adate
1 a1
2 a2
3 a3

表b

bid bdate
1 b1
2 b2
4 b4

left join:

select * from a left join b on a.aid = b.bid

首先取出a表中所有資料,然後再加上與a,b匹配的的資料
此時的取出的是:

1 a1 b1
2 a2 b2
3 a3 Null 字元

同樣的也有right join

指的是首先取出b表中所有資料,然後再加上與a,b匹配的的資料
此時的取出的是:

1 a1 b1
2 a2 b2
4 Null 字元 b4

呵呵,大家千萬注意,左右串連跟兩個表a,b相串連,要取出id相同的欄位資料是不一樣的,
select * from a ,b where a.aid = b.bid這是僅取出匹配的資料.
此時的取出的是:
1 a1 b1
2 a2 b2

這裡順便說明下union 、union all

union是串連兩個表的資料並排除所有重複的資料。

而union all不排除重複的資料。

下面是你可能感興趣的文章:
超詳細mysql left join,right join,inner join用法分析
SQL 外連結操作小結inner join left join right join
SQL中的left join right join

相關文章

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.