国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數據庫 > MySQL > 正文

mysql的左右內連接用法實例

2024-07-24 12:42:47
字體:
來源:轉載
供稿:網友

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

用個例子來解析下mysql的左連接, 右連接和內連接

代碼如下: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中的每一條記錄對應的id如果在user_profile中也恰好存在而且剛好只有一條,那么就會在返回的結果中形成一條新的記錄。如上面1, 2, 3, 4對應的情況。
2. 對于user_id中的每一條記錄對應的id如果在user_profile中也恰好存在而且有N條,那么就會在返回的結果中形成N條新的記錄。如上面的5對應的情況。
3. 對于user_id中的每一條記錄對應的id如果在user_profile中不存在,那么就會在返回的結果中形成一條條新的記錄,且該記錄的右邊全部NULL。如上面的6對應的情況。

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

比如, 要查詢在一個相關的表中不存在的數據, 通過id關聯,要查出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中的每一條記錄對應的id如果在user_id中也恰好存在而且剛好只有一條,那么就會在返回的結果中形成一條新的記錄。如上面2, 3, 4, 5對應的情況。
2. 對于user_profile中的每一條記錄對應的id如果在user_id中也恰好存在而且有N條,那么就會在返回的結果中形成N條新的記錄。如上面的1對應的情況。
3. 對于user_profile中的每一條記錄對應的id如果user_id中不存在,那么就會在返回的結果中形成一條條新的記錄,且該記錄的左邊全部NULL。如上面的8對應的情況。

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

三. 內連接

MySQL內連接的數據記錄中,不會存在字段為NULL的情況。可以簡單地認為,內鏈接的結果就是在左連接或者右連接的結果中剔除存在字段為NULL的記錄后所得到的結果, 另外,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程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 铜陵市| 兰州市| 资源县| 四川省| 白河县| 西昌市| 甘孜| 孝义市| 神池县| 镶黄旗| 都匀市| 花莲县| 宜州市| 航空| 松江区| 株洲县| 藁城市| 赤峰市| 新宁县| 英山县| 民县| 内乡县| 镇平县| 永新县| 山西省| 密山市| 德惠市| 华亭县| 惠来县| 栖霞市| 迭部县| 南阳市| 铜川市| 郸城县| 宜宾县| 唐山市| 镇康县| 邻水| 六安市| 贵港市| 固始县|