练习题

一、topN分析问题 

加伪列rownum行号的问题:

1:永远按照默认的顺序生成----在原表的顺序下,跟排序无关

原因:临时表的顺序 create global temporary table****

特点:当会话或者事务结束的时候,临时表中的数据自动删除

2:rownum只能使用<,<=,不能使用>,>=

select  rownum2, empno, ename, sal from (select rownum,empno,ename,sal from emp order by sal  desc)where rownum2<=3;

二、查询薪水高于本部门平均工资的员工

select e.empno, e.ename,e.sal ,d.AVGSAL from 

emp e, (select deptno,avg(sal) avgsal from emp group by deptno )d

WHERE E.deptno=d.deptno

and e.sal>d.avgsal;

相关子查询:把主查询中的某些值作为参数传递给子查询

select e.empno,e.name,e.sal,(select avg(sal) from emp where deptno=e.deptno )avgsal

from emp e

where e.sal> (select avg(sal) from emp where deptno=e.deptno )

三、统计每年入职的员工人数

select count(*) total ,

sum(if to_year(to_date(hiredate))='1981'  then i=i+1 else )"1981",

from emp


行转列:

wm_concat(varchar2)-->组函数

例:select deptno,wm_concat(ename) namelist

from emp

group by deptno;

你可能感兴趣的:(练习题)