1、往scott的emp表插入一条记录
insert into scott.emp(empno,ename,job) values(9527,‘EAST‘,‘SALESMAN‘);
2、scott的emp表左外连接dept表
select e.empno,e.ename,e.job,d.deptno,d.dname
from scott.emp e left join scott.dept d
on e.deptno = d.deptno;
结果:
3、scott的emp表右外连接dept表
select e.empno,e.ename,e.job,d.deptno,d.dname
from scott.emp e right join scott.dept d
on e.deptno = d.deptno;
结果:
4、scott的emp表完全外连接dept表
select e.empno,e.ename,e.job,d.deptno,d.dname
from scott.emp e full join scott.dept d
on e.deptno = d.deptno;
结果:
5、scott的emp表内连接dept表
select e.empno,e.ename,e.job,d.deptno,d.dname
from scott.emp e inner join scott.dept d
on e.deptno = d.deptno;
结果:
总结:
内连接(INNER JOIN/JOIN):查询结果记录行都满足连接条件;
左外连接(LEFT OUTER JOIN/LEFT JOIN):查询结果记录行不仅包含了满足连接条件条件的数据行,还包含左表不满足连接条件的数据行;
右外连接(RIGHT OUTER JOIN/RIGHT JOIN):查询结果记录行不仅包含了满足连接条件条件的数据行,还包含右表不满足连接条件的数据行;
完全外连接(FULL OUTER JOIN/FULL JOIN):查询结果记录行不仅包含了满足连接条件条件的数据行,还包含左表、右表不满足连接条件的数据行;
原文地址:https://www.cnblogs.com/stm32stm32/p/8688260.html