当前位置:   article > 正文

【Oracle11gR2 | 学习】分组查询、多表查询、自连接、子查询、分页查询_orcale 11g 分页

orcale 11g 分页

学习资料来源于:【Oracle】黑马57期Oracle数据库基础教程_哔哩哔哩 (゜-゜)つロ 干杯~-bilibili

今天开篇学习分组查询,涉及到group by、having和where的用法问题。

【代码展示】:

  1. --分组查询
  2. --查询出每个部门的平均工资
  3. --分组查询中,出现在group by后面的原始列,才能出现在select后面,
  4. --没有出现在group by后面的列,想在select后面,必须加上聚合函数。
  5. select e.deptno,avg(e.sal)
  6. from emp e
  7. group by e.deptno;
  8. --查询出平均工资高于2000的部门信息
  9. select e.deptno,avg(e.sal)
  10. from emp e
  11. group by e.deptno
  12. having avg(e.sal)>2000
  13. --所有条件都不能使用别名来判断,即以下是错误表达
  14. select ename,sal s from emp where s>1500;
  15. select e.deptno,avg(e.sal) asal
  16. from emp e
  17. group by e.deptno
  18. having asal>2000
  19. --查询出每个部门工资高于800的员工的平均工资
  20. select e.deptno,avg(e.sal)
  21. from emp e
  22. where e.sal>800
  23. group by e.deptno;
  24. --然后再查询出平均工资高于2000的部门
  25. select e.deptno,avg(e.sal)
  26. from emp e
  27. where e.sal>800
  28. group by e.deptno
  29. having avg(e.sal)>2000;
  30. --where是过滤分组前的数据,having是过滤分组后的数据
  31. --表现形式:where必须在group by之前,having在group by之后

多表查询,涉及到笛卡尔积(不必掌握)、等值连接、内连接、左外连接、右外连接等概念。

【代码展示】:

  1. --多表查询
  2. --笛卡尔积:没有实际意义,大多数都是没有用的记录
  3. select *
  4. from emp e,dept d;
  5. --等值连接:即14个人带上他的部门信息,还是14条记录
  6. select *
  7. from emp e,dept d
  8. where e.deptno=d.deptno;
  9. --内连接(和等值连接效果一样,推荐用等值连接)
  10. select *
  11. from emp e inner join dept d
  12. on e.deptno=d.deptno;
  13. --发现40号部门(depno=40)没有显示,因为该部门没有员工,为了显示出所有的部门该怎么办?
  14. --查询出所有部门以及部门下的所有员工信息
  15. --用外连接(15条记录)
  16. select *
  17. from emp e right join dept d
  18. on e.deptno=d.deptno;
  19. --查询出所有员工以及所属部门信息
  20. --用外连接(14条记录)
  21. select *
  22. from emp e left join dept d
  23. on e.deptno=d.deptno;
  24. --oracle中专用的外连接(15条记录,显示了右侧d的所有数据)
  25. select *
  26. from emp e,dept d
  27. where e.deptno(+)=d.deptno;
  28. --oracle中专用的外连接(14条记录,显示了左侧e的所有数据)
  29. select *
  30. from emp e,dept d
  31. where e.deptno=d.deptno(+);

14条记录和15条记录的区别在于下图:

现在来观察一下emp这张表,可以发现,MGR一列代表的是领导,但是仅有领导编号,而这个编号在员工列EMPNO的编号重合

那么现在要来实现查询:找出员工的领导姓名,该如何操作呢?

【代码展示】:

  1. select * from emp;
  2. --查询出员工姓名,员工领导姓名
  3. --自连接:是指站在不同的角度把一张表看成多张表
  4. select e1.ename,e2.ename
  5. from emp e1,emp e2
  6. where e1.mgr=e2.empno;
  7. --查询出员工姓名,员工部门名称,员工领导姓名,员工领导部门名称
  8. select e1.ename,d1.dname,e2.ename,d2.dname
  9. from emp e1,emp e2,dept d1,dept d2
  10. where e1.mgr=e2.empno
  11. and e1.deptno=d1.deptno
  12. and e2.deptno=d2.deptno;

在书写这段代码的时候,有一点值得注意:

并不是不报错就是对的,而是要揣摩表达式是否能够满足查询要求。

接下来学习子查询,其实子查询理解起来很简单(相比于上面的自连接),在本人理解其实就是嵌套(术语若不对,请指正)。

【代码展示】:

  1. --子查询
  2. --子查询返回一个值
  3. --查询出工资和SCOTT一样的员工信息
  4. select *
  5. from emp
  6. where sal =
  7. (select sal
  8. from emp
  9. where ename='SCOTT');
  10. --子查询返回一个集合
  11. --查询出工资和10号部门任意员工一样的员工信息
  12. select *
  13. from emp
  14. where sal in
  15. (select sal
  16. from emp
  17. where deptno=10);
  18. --子查询返回一张表
  19. --查询出每个部门最低工资和最低工资员工姓名和该员工所在部门名称
  20. --1、先查询出每个部门最低工资
  21. select deptno,min(sal)
  22. from emp
  23. group by deptno;
  24. --2、三表联查,得到最终结果
  25. select t.deptno,e.ename,d.dname
  26. from (select deptno,min(sal) msal
  27. from emp
  28. group by deptno) t,emp e,dept d
  29. where t.deptno=e.deptno
  30. and e.deptno=d.deptno
  31. and t.msal=e.sal;

撰写习惯需要注意:

在写复杂语句表达时,应先搭好select-from-where框架,

然后在from后逐一对应用到的表或数据,如果表或数据能直接获取,那就直接写上,如果不能,可以先在旁处写好子查询语句,再嵌套进去;

select后也一样,逐一对应好需要展示的最终结果项;

而where后是较为困难的,需要逐一确定好限制条件。

分页查询就是要求从指定的第几个开始显示到指定的第几个结束,涉及到rownum的概念。

【代码展示】:

  1. --oracle中的分页
  2. --rownum行号:当做select操作时,每查询出一行记录,
  3. --就会在该行加上一个行号,行号从1开始,依次递增,不能跳着走
  4. -----emp表工资倒序排列后,每页五条记录,查询第二页
  5. select rownum,e.* from emp e order by e.sal desc;--发现rownum是乱的
  6. -----因此排序操作会影响rownum的顺序
  7. -----因此,如果涉及到排序,同时需要用到rownum的时候,就在外面再加一个rownum
  8. select rownum,t.* from(
  9. select rownum,e.* from emp e order by e.sal desc
  10. ) t;
  11. -----分页查询:emp表工资倒序排列后,每页五条记录,查询第二页
  12. select rownum,e.* from(
  13. select * from emp order by sal desc) e
  14. where rownum<11
  15. and rownum>5;--发现错误,一条也不显示,因为rownum不能写上大于一个正数
  16. -----正确写法(固定格式)
  17. select * from(
  18. select rownum rn,e.* from(
  19. select * from emp order by sal desc) e
  20. where rownum<11)
  21. where rn>5;

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/268561
推荐阅读
相关标签
  

闽ICP备14008679号