MySql鏈接筆記

1、內鏈接查詢  inner join

關鍵字:inner  join   on

語句:select * from a_table a inner join b_table b on a.a_id = b.b_id;

說明:組合兩個表中的記錄,返回關聯字段相符的記錄,也就是返回兩個表的交集(陰影)部分。sql

 

 



案例解釋:在boy表和girl 表中查出兩表 hid 字段一致的姓名(gname,bname),boy表和girl 表以下:

3d

 

 

      

 

 



採用內鏈接查詢方式:

SELECT boy.hid,boy.bname,girl.gname FROM boy INNER JOIN girl ON girl.hid = boy.hid;

查詢結果以下:blog

 

 



2、左鏈接查詢 left join

關鍵字:left join on / left outer join on

語句:SELECT  * FROM a_table a left join b_table b ON a.a_id = b.b_id;

說明: left join 是left outer join的簡寫,它的全稱是左外鏈接,是外鏈接中的一種。 左(外)鏈接,左表(a_table)的記錄將會所有表示出來,而右表(b_table)只會顯示符合搜索條件的記錄。右表記錄不足的地方均爲NULL。
排序

 

 


案例解釋:在boy表和girl 表中左鏈接查詢,boy表和girl 表以下:

      io

 

 

 

 



採用內鏈接查詢方式:

SELECT boy.hid,boy.bname,girl.gname FROM boy LEFT JOIN girl ON girl.hid = boy.hid;

查詢結果以下:
table

 

 


3、右鏈接 right join

關鍵字:right join on / right outer join on

語句:SELECT  * FROM a_table a right outer join b_table b on a.a_id = b.b_id;

說明:right join是right outer join的簡寫,它的全稱是右外鏈接,是外鏈接中的一種。與左(外)鏈接相反,右(外)鏈接,左表(a_table)只會顯示符合搜索條件的記錄,而右表(b_table)的記錄將會所有表示出來。左表記錄不足的地方均爲NULL。
select

 

 


案例解釋:在boy表和girl 表中右鏈接查詢,boy表和girl 表以下:

      搜索

 

 

 

 



採用內鏈接查詢方式:

SELECT boy.hid,boy.bname,girl.gname FROM boy RIGHT JOIN girl ON girl.hid = boy.hid;

查詢結果以下:

4、全鏈接 union

關鍵字:union /union all

語句:(select colum1,colum2...columN from tableA ) union (select colum1,colum2...columN from tableB )

         或 (select colum1,colum2...columN from tableA ) union all (select colum1,colum2...columN from tableB );

union語句注意事項:

         1.經過union鏈接的SQL它們分別單獨取出的列數必須相同;

         2.不要求合併的表列名稱相同時,以第一個sql 表列名爲準;

         3.使用union 時,徹底相等的行,將會被合併,因爲合併比較耗時,通常不直接使用 union 進行合併,而是一般採用union all 進行合併;

         4.被union 鏈接的sql 子句,單個子句中不用寫order by ,由於不會有排序的效果。但能夠對最終的結果集進行排序;

           (select id,name from A order by id) union all (select id,name from B order by id); //沒有排序效果

           (select id,name from A ) union all (select id,name from B ) order by id; //有排序效果

案例解釋:將a表和b表合併,表結構以下:

          nio

 

 

 

 



採用 union 全鏈接:
im

 

 


union會自動將徹底重複的數據去除掉,a、b表中"c"的值都爲15,因此只顯示一行。

採用 union all 全鏈接:

 

 

union all會保留那些重複的數據;

相關文章
相關標籤/搜索