摘要: 参考文献:http://space.itpub.net/11134237/viewspace-617951 数据表的连接有:1、内连接(自然连接): 只有两个表都相匹配的行才能在结果集中出现2、外连接: 包括(1)左外连接(左边的表不加限制),右表补null (2)右外连接(右边的表不加限制) ,左表补null (3)全外连接(左右两表都不加限制) ,左右两表空缺行补null3、自连接(连接发生在一张基表内)select a.studentno, a.studentname, b.classname from students a, classes b where a.classid(+) = 阅读全文
posted @ 2011-09-27 19:06 xwdreamer 阅读(4596) 评论(0) 推荐(1) 编辑