超详细oracle教程

时间:2014-07-30 15:09:33
【文件属性】:

文件名称:超详细oracle教程

文件大小:2.88MB

文件格式:PDF

更新时间:2014-07-30 15:09:33

oracle 教程

很详细的oracle教程.... 7.2、子查询空值/多值问题 如果子查询未返回任何行,则主查询也不会返回任何结果 (空值)select * from emp where sal > (select sal from emp where empno = 8888); 如果子查询返回单行结果,则为单行子查询,可以在主查 询中对其使用相应的单行记录比较运算符 (正常)select * from emp where sal > (select sal from emp where empno = 7566); 如果子查询返回多行结果,则为多行子查询,此时不允许 对其使用单行记录比较运算符 (多值)select * from emp where sal > (select avg(sal) from emp group by deptno);//非法 7.3、多行子查询 select * from emp where sal > any(select avg(sal) from emp group by deptno); select * from emp where sal > all(select avg(sal) from emp group by deptno);


网友评论