公式:
select t.* ,t1.* from t1 left join t2? on t1.id =t2.id? ?and t1.name='ss' and t2.name='cc'?
where t1.age >10?
注釋:
1.? 優(yōu)先級(jí) on > where :? 就是說(shuō)先執(zhí)行on 在執(zhí)行where
? ?where 是在on 的出的結(jié)果集以后才進(jìn)行篩選的;
2.? on 是先篩選再關(guān)聯(lián):??
? ? 例子中:on t1.id =t2.id? ?and t1.name='ss' and t2.name='cc'?
? ? ?on后面的 t1.name='ss' and t2.name='cc'? : 這種單表設(shè)定條件的叫做篩選禀综,就先執(zhí)行
? ?on? t1.id = t2.id : 這種設(shè)定兩個(gè)表關(guān)系的叫做關(guān)聯(lián)
----------------------
以下實(shí)例基于該表和數(shù)據(jù):
CREATE TABLE `class` (
? `class_id` int NOT NULL,
? `class_name` varchar(100) DEFAULT NULL,
? `class_grade` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
CREATE TABLE `score` (
? `class_id` int NOT NULL,
? `stu_id` varchar(100) DEFAULT NULL,
? `score` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
INSERT INTO `mytest`.`class` (`class_id`, `class_name`, `class_grade`) VALUES ('1', '語(yǔ)文', 'A');
INSERT INTO `mytest`.`class` (`class_id`, `class_name`, `class_grade`) VALUES ('2', '數(shù)學(xué)', 'B');
INSERT INTO `mytest`.`class` (`class_id`, `class_name`, `class_grade`) VALUES ('3', '英語(yǔ)', 'C');
INSERT INTO `mytest`.`score` (`class_id`, `stu_id`, `score`) VALUES ('1', 'A001', '91');
INSERT INTO `mytest`.`score` (`class_id`, `stu_id`, `score`) VALUES ('2', 'A001', '95');
INSERT INTO `mytest`.`score` (`class_id`, `stu_id`, `score`) VALUES ('1', 'A002', '82');
INSERT INTO `mytest`.`score` (`class_id`, `stu_id`, `score`) VALUES ('2', 'A001', '87');
INSERT INTO `mytest`.`score` (`class_id`, `stu_id`, `score`) VALUES ('3', 'B003', '65');
-- 1 基礎(chǔ)的
select * from class c left join score s? on c.class_id = s.class_id;
-- 2 右表score=90 不存在酒繁,那么左表相當(dāng)于關(guān)聯(lián)空表
select * from class c left join score s on c.class_id = s.class_id and s.score =90
-- 3
? select * from class c left join score s
on c.class_id = s.class_id and c.class_name='語(yǔ)文'? and s.score =90
-- 4? 關(guān)聯(lián)結(jié)果中 不存在c.class_name ='語(yǔ)文' and s.score='90'
? select * from class c left join score s on c.class_id = s.class_id
? where c.class_name ='語(yǔ)文' and s.score='90'
-- 5 1=0 關(guān)聯(lián)失敗只是現(xiàn)實(shí)左側(cè)急凰; 只是顯示左側(cè)遗增,右側(cè)為空
? select * from class c left join score s on c.class_id? = s.class_id and 1 =0
-- 6? 只是顯示左側(cè),右側(cè)為空
? select * from class c left join score s on 1 =0
-- 7 注意 c.class_name='語(yǔ)文'
-- 是對(duì)左表加的條件帆锋,那么表僅僅使用讓左表從c.class_name='語(yǔ)文' 的數(shù)據(jù)與右表關(guān)聯(lián)
-- 雖然左表class_name=旁仿!'語(yǔ)文'也符合c.lass_id=s.class_id 但是由于左表加上了限定條件
-- 所以不允許關(guān)聯(lián)踏枣,僅僅允許關(guān)聯(lián)c.class_name='語(yǔ)文'的數(shù)據(jù)按照c.class_id = s.class_id 關(guān)系去關(guān)聯(lián)
-- 但是左側(cè)的數(shù)據(jù)未關(guān)聯(lián)也要求全部顯示
? ? select * from class c left join score s on c.class_id = s.class_id and c.class_name='語(yǔ)文'
-- 8 其實(shí)分析同第7條七兜,他僅僅允許左側(cè)clss_name='英語(yǔ)' 的數(shù)據(jù)和右側(cè)關(guān)聯(lián)丸凭,其他的哪怕能關(guān)聯(lián)上都不允許關(guān)聯(lián),
-- 只是允許顯示出來(lái)
select * from class c left join score s on c.class_id = s.class_id and c.class_name='英語(yǔ)'
-- 9 左側(cè)不存在class_name='體育'的數(shù)據(jù)腕铸,那么僅僅顯示出左側(cè)所有數(shù)據(jù)惜犀,右側(cè)空白
-- 就僅僅把握一個(gè)原則,不管左側(cè)限定什么條件成立或則不成立狠裹,就僅僅允許條件成立的的數(shù)據(jù)去關(guān)聯(lián)虽界,其他的僅僅是顯示不關(guān)聯(lián)
select * from class c left join score s on c.class_id = s.class_id and c.class_name='體育'
-- 10 首先左側(cè)數(shù)據(jù)全部顯示,其次僅僅允許左側(cè)class_name='語(yǔ)文'的去關(guān)聯(lián)涛菠,右側(cè)限定僅僅允許s.socre='91'的這一條數(shù)據(jù)關(guān)聯(lián)
? select * from class c left join score s on c.class_id = s.class_id and c.class_name='語(yǔ)文' and s.score='91'
-- 11 首先左側(cè)數(shù)據(jù)全部顯示莉御,但是不存在c.class_name='體育'的數(shù)據(jù),所以就左側(cè)的所有數(shù)據(jù)都不需要關(guān)聯(lián)了碗暗,右側(cè)數(shù)據(jù)
-- 也不存在颈将,所以右側(cè)全部為空
? select * from class c left join score s on c.class_id = s.class_id and c.class_name='體育' and s.score='90'
-- 12 首先左側(cè)數(shù)據(jù)全部顯示,但是不存在c.class_name='體育'的數(shù)據(jù)言疗,所以就左側(cè)的所有數(shù)據(jù)都不需要關(guān)聯(lián)了,右側(cè)數(shù)據(jù)
-- 雖然存在颂砸,但是左側(cè)限定了僅僅允許左側(cè)c.class_name='體育'的數(shù)據(jù)數(shù)據(jù)去關(guān)聯(lián)右側(cè)噪奄,其他的無(wú)需關(guān)聯(lián)的,所以右側(cè)空白
? select * from class c left join score s on c.class_id = s.class_id and c.class_name='體育' and s.score='91'
-- 13 無(wú)數(shù)據(jù)人乓,條數(shù)0? 因?yàn)閣here 是關(guān)聯(lián)以后的結(jié)果以后在查詢s.score='90' 數(shù)據(jù)不存在
select * from class c left join score s on c.class_id = s.class_id
? where s.score='90'
-- 14 3條勤篮,請(qǐng)注意它與13語(yǔ)句的區(qū)別,s.score='90' 放在on 后面色罚,他僅僅篩選右側(cè)的數(shù)據(jù)發(fā)現(xiàn)不存在碰缔,但是左側(cè)依然全部顯示
-- 只是關(guān)聯(lián)不上而已
select * from class c left join score s on c.class_id = s.class_id? and? s.score='90'