-
select avg(sal) from emp group by deptno; ---计算部门的平均工资。 select max(avg(sal)) from emp group by deptno;--计算部门的平均工资的最大值。查看全部
-
connect by prior a=b start with a=*** connect by prior a=b start with b is null查看全部
-
break up deptno skip 2 部门号只显示一次,不同部门号之间跳过2行查看全部
-
示例一: 分页查询显示员工信息:显示员工号,姓名,月薪 要求:(1)每页显示四条记录 (2)显示第二页的员工 (3)按照月薪降序排列 注意:rownum只能使用<,<=,不能使用>,>= Oracle 通过拼接子查询方式实现分页操作 select r,empno,ename,sal from (select rownum r,empno,ename,sal from (select rownum,empno,ename,sal from emp order by sal desc) e1 where rownum<=8) e2 where r>=5; 查看伪列的行号 select rownum,r,empno,ename,sal from (select rownum r,empno,ename,sal from (select rownum,empno,ename,sal from emp order by sal desc) e1 where rownum<=8) e2 where r>=5;查看全部
-
返回单行数据的为单行子查询,返回多行数据的为多行子查询查看全部
-
where,select,having,from 这些位置可以使用子查询查看全部
-
where子句中不能使用组函数查看全部
-
having中可以使用组函数,where中不可以。查看全部
-
distinct 去掉重复查看全部
-
select ci_id,wm_concat(stu_name) stu_name from (select ci_id,stu_name from pm_ci c,pm_stu s where instr(c.stu_ids,s.stu_id)>0) t group by ci_id;查看全部
-
分组查询:group by查看全部
-
子查询中的空值查看全部
-
子查询的注意问题查看全部
-
层次查询的原理查看全部
-
层次查询查看全部
举报
0/150
提交
取消