您好,登錄后才能下訂單哦!
本文討論中用到的測試數據
``create table student(
id int primary key auto_increment,
name varchar(10)
);
insert into student values
(null,'xiaohong'),
(null,'xiaoming'),
(null,'xiaogang'),
(null,'xiaoliang');
create table score(
id int primary key auto_increment,
stu_id int not null,
score decimal(5,2)
);
insert into score values
(null,1,300.45),
(null,2,400.35),
(null,3,500);``
由于mysql默認是內連接,所以,join 等同于 inner join
以兩個表舉例,內連接只返回在連接過程中有連接匹配的記錄。也就是說,根據連接條件,兩個表中都有對應的數據存在的記錄,才會返回。
舉例:select stu.id,stu.name,s.score from student as stu inner join score as s on stu.id = s.stu_id;
如上圖所示,由于小亮沒有成績,所以小剛沒有出現在最終的結果中。
連接條件可以使用 on using where
區別:on 在連表查詢中,任何情況下都可以使用on,而且建議使用 on。on 是在連表的過程中,根據on條件判斷是否保留連表的結果。
using 是在連表查詢的字段名一致時,可以使用。如 using(id)。using 條件中使用的字段,返回結果中只有一遍。
where 是在連表操作完成后,再根據where條件進行數據過濾。不建議使用,因為這樣效率很低。
外連接查詢時,允許另一方存在與之不匹配的數據。外連接的連接條件不可使用 where,須使用 on 或者 using其中的一種,其它都與內連接一致。
左表為主表,即使右表沒有與左表匹配的記錄,也返回左表的記錄。而右表與左表不匹配的記錄將被忽略。
舉例:select * from student as stu left join score as s on stu.id = s.stu_id;
結果如下:
+----+-----------+------+--------+--------+
| id | name | id | stu_id | score |
+----+-----------+------+--------+--------+
| 1 | xiaohong | 1 | 1 | 300.45 |
| 2 | xiaoming | 2 | 2 | 400.35 |
| 3 | xiaogang | 3 | 3 | 500.00 |
| 4 | xiaoliang | NULL | NULL | NULL |
+----+-----------+------+--------+--------+
右表為主表,即使左表沒有與之匹配的記錄,也返回右表的記錄。
舉例:select * from score as s right join student as stu on s.stu_id=stu.id;
+------+--------+--------+----+-----------+
| id | stu_id | score | id | name |
+------+--------+--------+----+-----------+
| 1 | 1 | 300.45 | 1 | xiaohong |
| 2 | 2 | 400.35 | 2 | xiaoming |
| 3 | 3 | 500.00 | 3 | xiaogang |
| NULL | NULL | NULL | 4 | xiaoliang |
+------+--------+--------+----+-----------+
自然連接會自動判斷,以兩個表中相同的字段為連接條件,返回查詢結果。
注意:內連接不寫連接條件會出現笛卡爾積的結果,應該避免這種情況,而外連接不寫連接條件會報錯
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。