mysql的左右內(nèi)連接用法實例
來源:易賢網(wǎng) 閱讀:1431 次 日期:2015-03-10 16:12:45
溫馨提示:易賢網(wǎng)小編為您整理了“mysql的左右內(nèi)連接用法實例”,方便廣大網(wǎng)友查閱!

本文實例講述了mysql的左右內(nèi)連接用法。分享給大家供大家參考。具體如下:

用個例子來解析下mysql的左連接, 右連接和內(nèi)連接

代碼如下:

create table user_id ( id decimal(18) );

create table user_profile ( id decimal(18) , name varchar(255) ) ;

insert into user_id values (1);

insert into user_id values (2);

insert into user_id values (3);

insert into user_id values (4);

insert into user_id values (5);

insert into user_id values (6);

insert into user_id values (1);

insert into user_profile values (1, "aa");

insert into user_profile values (2, "bb");

insert into user_profile values (3, "cc");

insert into user_profile values (4, "dd");

insert into user_profile values (5, "ee");

insert into user_profile values (5, "EE");

insert into user_profile values (8, 'zz');

一. 左連接:

代碼如下:

mysql> select a.id id , ifnull(b.name, 'N/A') name from user_id a left join user_profile b on a.id = b.id;

mysql> select a.id id , ifnull(b.name, 'N/A') name from user_id a left join user_profile b on a.id = b.id;

+------+------+

| id | name |

+------+------+

| 1 | aa |

| 2 | bb |

| 3 | cc |

| 4 | dd |

| 5 | ee |

| 5 | EE |

| 6 | N/A |

| 1 | aa |

+------+------+

8 rows in set (0.00 sec)

user_id居左,故謂之左連接。 這種情況下,以user_id為主,即user_id中的所有記錄均會被列出。分以下三種情況:

1. 對于user_id中的每一條記錄對應(yīng)的id如果在user_profile中也恰好存在而且剛好只有一條,那么就會在返回的結(jié)果中形成一條新的記錄。如上面1, 2, 3, 4對應(yīng)的情況。

2. 對于user_id中的每一條記錄對應(yīng)的id如果在user_profile中也恰好存在而且有N條,那么就會在返回的結(jié)果中形成N條新的記錄。如上面的5對應(yīng)的情況。

3. 對于user_id中的每一條記錄對應(yīng)的id如果在user_profile中不存在,那么就會在返回的結(jié)果中形成一條條新的記錄,且該記錄的右邊全部NULL。如上面的6對應(yīng)的情況。

不符合上面三條規(guī)則的記錄不會被列出。

比如, 要查詢在一個相關(guān)的表中不存在的數(shù)據(jù), 通過id關(guān)聯(lián),要查出user_id表中存在user_profile中不存在的記錄:

代碼如下:

select count(*) from user_id left join user_profile on user_id.id = user_profile.id where user_profile.id is null;

二. 右連接

user_profile居右,故謂之右連接。 這種情況下, 以user_profile為主,即user_profile的所有記錄均會被列出。分以下三種情況:

1. 對于user_profile中的每一條記錄對應(yīng)的id如果在user_id中也恰好存在而且剛好只有一條,那么就會在返回的結(jié)果中形成一條新的記錄。如上面2, 3, 4, 5對應(yīng)的情況。

2. 對于user_profile中的每一條記錄對應(yīng)的id如果在user_id中也恰好存在而且有N條,那么就會在返回的結(jié)果中形成N條新的記錄。如上面的1對應(yīng)的情況。

3. 對于user_profile中的每一條記錄對應(yīng)的id如果user_id中不存在,那么就會在返回的結(jié)果中形成一條條新的記錄,且該記錄的左邊全部NULL。如上面的8對應(yīng)的情況。

不符合上面三條規(guī)則的記錄不會被列出。

三. 內(nèi)連接

MySQL內(nèi)連接的數(shù)據(jù)記錄中,不會存在字段為NULL的情況??梢院唵蔚卣J(rèn)為,內(nèi)鏈接的結(jié)果就是在左連接或者右連接的結(jié)果中剔除存在字段為NULL的記錄后所得到的結(jié)果, 另外,MySQL不支持full join

代碼如下:

mysql> select * from user_id a inner join user_profile b on a.id = b.id;

+------+------+------+

| id | id | name |

+------+------+------+

| 1 | 1 | aa |

| 1 | 1 | aa |

| 2 | 2 | bb |

| 3 | 3 | cc |

| 4 | 4 | dd |

| 5 | 5 | ee |

| 5 | 5 | EE |

+------+------+------+

7 rows in set (0.00 sec)

mysql> select * from user_id a, user_profile b where a.id = b.id;

+------+------+------+

| id | id | name |

+------+------+------+

| 1 | 1 | aa |

| 1 | 1 | aa |

| 2 | 2 | bb |

| 3 | 3 | cc |

| 4 | 4 | dd |

| 5 | 5 | ee |

| 5 | 5 | EE |

+------+------+------+

7 rows in set (0.00 sec)

mysql> select * from user_id a join user_profile b on a.id = b.id;

+------+------+------+

| id | id | name |

+------+------+------+

| 1 | 1 | aa |

| 1 | 1 | aa |

| 2 | 2 | bb |

| 3 | 3 | cc |

| 4 | 4 | dd |

| 5 | 5 | ee |

| 5 | 5 | EE |

+------+------+------+

7 rows in set (0.00 sec)

希望本文所述對大家的MySQL程序設(shè)計有所幫助。

更多信息請查看IT技術(shù)專欄

更多信息請查看數(shù)據(jù)庫
易賢網(wǎng)手機網(wǎng)站地址:mysql的左右內(nèi)連接用法實例
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報警專用圖標(biāo)