标签:ack where 连接 color image src 右外连接 记录 左外连接
外连接作用:(左外连接和右外连接;注:没有全外连接)
希望把某些不成立的记录(40号部门),仍然包含在最后的结果中
左外连接:当where e.deptno=d.deptno不成立的时候,等号左边的表任然被包含在最后的结果中;
写法:where e.deptno=d.deptno(+)
右外连接:当where e.deptno=d.deptno不成立的时候,等号右边的表任然被包含在最后的结果中;
写法:where e.deptno(+)=d.deptno;
标签:ack where 连接 color image src 右外连接 记录 左外连接
原文地址:https://www.cnblogs.com/curedfisher/p/11757381.html