赞
踩
Join 对比(7种)
代码演示:
- -- 查询参加了考试的同学(学号,姓名,科目编号,分数)
- SELECT * FROM student
- SELECT * FROM result
-
- /*
- 1. 分析需求:分析查询的字段来自哪些表(超过一张表就要使用连接查询)
- 2. 确定使用哪种连接查询 共7种
- 3. 确定交叉点(这两个表中哪个数据是相同的)
- 4. 判断的条件:学生表中的 studentno = 成绩表 studentno
- */
-
- SELECT s.studentno,studentname,subjectno,studentresult
- FROM student AS s
- INNER JOIN result AS r
- WHERE s.studentno = r.studentno
-
-
- -- LEFT JOIN
- SELECT s.studentno,studentname,subjectno,studentresult
- FROM student s
- LEFT JOIN result r
- ON s.studentno = r.studentno
-
-
- -- RIGHT JOIN
- SELECT s.studentno,studentname,subjectno,studentresult
- FROM student s
- RIGHT JOIN result r
- ON s.studentno = r.studentno
操作 | 描述 |
Inner join | 如果表中至少有一个匹配,就返回行 |
left join | 即使右表中没有匹配,也会从左表中返回所有的值 |
right join | 即使左表中没有匹配,也会从右表中返回所有的值 |
- -- 查询缺考的同学
- SELECT s.studentno,studentname,subjectno,studentresult
- FROM student s
- LEFT JOIN result r
- ON s.studentno = r.studentno
- WHERE studentresult IS NULL
- -- 思考题:查询参加考试的同学信息(学号,学生姓名,科目名,分数)
- SELECT s.studentno,studentname,`subjectname`,studentresult
- FROM student s
- RIGHT JOIN result r
- ON r.studentno = s.studentno
- INNER JOIN `subject` sub
- ON r.subjectno = sub.subjectno
-
- -- 若要在多张表查询,可以慢慢来,先查询两张表然后再增加
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。