内外链接

文章目录

  • 内连接
  • 外连接

表的连接分为内连接和外连接

内连接

实际上就是使用where子句对两种表形成笛卡尔积进行赛选,我们前面学习的查询也基本都是内链接,他是使用最多的一种查询

有连接关系才可以用inner join

select 字段 from table1 inner join table2 on 连接条件 and 其他条件
  • 显示SMITH 的名字和部门名、
    • 使用普通方法
select ename,dname from emp ,dept where emp.deptno=dept.deptno and ename='SMITH';
  • 使用inner join这个内连接方法,后面的where就是对新建立表进行数据的筛选
 select * from emp inner join dept on emp.deptno=dept.deptno where ename="SMITH";

内连接,数据没有匹配上,就会直接被过滤掉

外连接

外连接又分成左外连接,右外连接

如果进行联合查询,左边完全显示,就是左外连接

select * from exam left join stu on exam.id=stu.id;

左外连接,就是以左表为主,去右边里面去找,即使没找到,也要把数据保留下来,评不上的就是NULL,不会删除左表的任何数据

  • 请找到非法学生,查找NULL即可
select * from select * from exam left join stu on exam.id=stu.id where stu.id is null;

这里筛选出来的就是非法的

同理,右外连接就是以右表为主
查找没有参加考试的同学

select * from exam right join stu on exam.id=stu.id where exam.id is null;
  • 列出部门名称和这些部门名称的员工信息,同时列出没有员工的部门
select ename,dname from emp right join dept on emp.deptno=dept.deptno;
  • 查找没有员工的部门
select ename,dname from emp right join dept on emp.deptno=dept.deptno where emp.deptno is null;

你可能感兴趣的:(MySQL,sql,数据库)