(+)表示外连接。(+)在等号左边的为右连接,在等号右边的为左连接。如where z.zid(+) = t.zid,使用的是右连接。
左连接:以等号左边表的属性为参考,右边表即使没有与左边表相对应的值也会被查出来。
右连接:以等号右边表的属性为参考,左边表即使没有与右边表相对应的值也会被查出来。
比如有表Student,Course,Score
Student表:
Course表:
Score表:
内连接结果:
SELECT stu.name,c.name,s.score FROM score s,student stu,course c where c.id=s.cid and stu.id=s.sid;
SELECT stu.name,s.score FROM score s,student stu where stu.id=s.sid;
SELECT stu.name,s.score FROM student stu left join score s on stu.id=s.sid;
SELECT stu.name,s.score FROM student stu , score s where stu.id=s.sid(+);
右外连接结果:(为了更好的演示外连接的效果,在此不讲课程表加进去)
SELECT stu.name,s.score FROM student stu right join score s on stu.id=s.sid;
SELECT stu.name,s.score FROM student stu , score s where stu.id(+)=s.sid;