-
nvl()函数取消分组函数滤空功能查看全部
-
直接用from后面的子查询不也是可以吗?这样来看岂不是复杂了查看全部
-
执行计划查看全部
-
子查询中的空值问题 select * from emp where empno not in (select mgr from emp where mgr is not null);查看全部
-
判断一个值是否为空,不能用=、!=查看全部
-
子查询中排序 select rownum,empno,ename,sal from (select * from emp order by sal desc) where rownum<=3;查看全部
-
行号需要注意的两个问题 1、行号永远按照默认的顺序生成 2、行号只能使用<,<=;不能使用>,>=查看全部
-
子查询注意的10个问题(二)查看全部
-
子查询注意的10个问题(一)查看全部
-
层次查询 select level,empno,ename,sal,mgr from emp connect by prior empno=mgr start with mgr is null order by 1;查看全部
-
外连接写法 左外连接:where e.deptno=d.deptno(+) 右外连接:where e.deptno(+)=d.deptno查看全部
-
外连接 左外连接:当连接条件不成立时,等号左边的表仍然被包含 右外连接:当连接条件不成立时,等号右边的表仍然被包含查看全部
-
Group By语句的增强 group by rollup(a,b)查看全部
-
where与having的区别 1、不能在where子句中使用组函数 2、可以在having子句中使用组函数查看全部
-
组函数规则 所用包含于select列表中,而未包含于组函数中的列都必须包含于group by子句中查看全部
举报
0/150
提交
取消