oracle高级查询练习题
1、 列出员工表中每个部门的员工数和部门编号
Select deptno,count(*) from emp group by deptno;
补充1:列出员工表中,员工人数大于3的部门编号和员工人数
Select deptno,count(*) from emp group by deptno having count(*)>3;
补充2:列出员工表中,员工人数大于3的部门的部门编号,部门名称和部门位置
答案1:Select d.* from dept d,(select deptno,count(*) from emp group bydeptno having count(*)>3)x where d.deptno=x.deptno;
答案2:select * from dept where deptno in (select deptno from emp group bydeptno having count(*)>3);
补充3:列出员工表中,员工人数大于3的部门的部门编号,名称,位置和员工人数。
Select d.*,x.co from dept d,(selectdeptno,count(*) co from emp group by deptno having count(*)>3)x whered.deptno=x.deptno;(注意看聚合函数的处理方式)
2、 列出员工表中每个部门的员工数(员工数必须大于3),和部门名称
(1).先列出员工数大于3的部门号
Select deptno,count(*) from emp group by deptno having count(*)>3;
(2)列出员工表中每个部门的员工数(员工数必须大于3),和部门名称
Select x.co,d.dname from dept d,( Select deptno,count(*) cofrom emp group by deptno having count(*)>3)x where x.deptno=d.deptno ;
3、 找出工资比JONES多的员工
Select * from emp where sal>(select salfrom emp where ename=’JONES’);Select * from emp where sal>(select sal from emp where ename=’JONES’);
4、 列出所有员工的姓名和其上级的姓名(表的自连接)
Select e1.ename,e2.ename from emp e1,emp e2where e1.mgr=e2.empno;
5、 以职位分组,找出平均工资最高的两种职位
(1)先以职位分组并按平均工资降序排序
Select job,avg(sal)avg_sal from emp group by job order by avg_sal desc;
(2)找到前两位
Select x.* from (Select job,avg(sal) avg_sal from emp group by job order by avg_sal desc)x where rownum <= 2;
补充:查找出不在部门20,且比部门20中任何一个人工资都高的员工的姓名、部门名称
(1)先找出部门20的最高薪水
Select max(sal) from emp where deptno =20;
(2)再找到薪水比(1)高的且不在部门20
Select e.ename,d.dname from emp e,dept dwhere e.deptno=d.deptno and e.sal>( Select max(sal) from emp where deptno =20)and e.deptno!=20;
方法2: select e.ename,e.sal,d.dnamefrom emp e,dept d where e.deptno=d.deptno and e.deptno<>20 ande.sal>all(select sal from emp where deptno=20);
6、 得到平均工资大于2000的工作职种
Select job,avg(sal) from emp group by job havingavg(sal)>2000;
7、 分部门得到工资大于2000的所有员工的平均工资,并且平均工资还要大于2500
Select deptno,avg(sal) from emp where sal>2000 group bydeptno having avg(sal)>2500
8、 得到每个月工资总数最少的那个部门的部门编号,部门名称,部门位置
Select *from dept where deptno in(select x.deptno from (select deptno from emp group bydeptno order by sum(sal))x where rownum=1);
(1) 先按照工资总数升序排序
Select deptno from emp group bydeptno order by sum(sal); --x
(2) 找到第一位(即工资总数最少)
Select x.* from (Select deptnofrom emp group by deptno order by sum(sal))x where rownum=1;
(3) Select * from dept where deptno=( Select x.* from (Selectdeptno from emp group by deptno order by sum(sal))x where rownum=1);
9、 分部门得到平均工资等级为3级(等级表)的部门编号
思路:(1)获取到每个部门的平均工资x
Select deptno,avg(sal) avg_sal from emp group by deptno;
(2)获取到平均工资的等级。需要将x与salgrade做非等值连接。
select x.*,s.* fromx,salgrade s where x.avg_sal between s.losal and s.hisal;
(3) 将第二步中的x用(1)的语句替换 --最终结果
select x.*,s.* from (Selectdeptno,avg(sal) avg_sal from emp group by deptno)x,salgrade s where x.avg_salbetween s.losal and s.hisal and s.grade=3;
10、 查找出部门10和部门20中,工资最高第3名到第5名的员工的员工名字,部门名字,部门位置
(1)部门10和20按工资
Select * from emp where deptno in(10,20) order by sal desc;
(2)排名3-5
Select * from (Select rownum ro ,x.*from (Select * from emp wheredeptno in(10,20) order by sal desc)x )where ro>=3 and ro <=5;
3)员工名字,部门名字,部门
Select e.ename,d.dname,d.loc from (Select * from (Select rownum ro ,x.*from(Select * from emp where deptno in(10,20) order by sal desc)x )where ro>=3and ro <=5)e,dept d where e.deptno=d.deptno;
11、 查找出收入(工资加上奖金),下级比自己上级还高的员工编号,员工名字,员工收入
Select e1.empno,e1.ename,e1.sal+nvl(e1.comm,0)from emp e1,emp e2 where e1.mgr=e2.empno and e1.sal+nvl(e1.comm,0)>e2.sal+nvl(e2.comm,0);
12、 查找出工资等级不为4级的员工的员工名字,部门名字,部门位置
(1)工资等级
Select e.*,s.grade from emp e,salrade s where e.sal between s.losal ands.hisal;
(2)工资等级不为4
Select e1.ename,d.dname,d.loc,e1.grade from ( Select e.*,s.grade fromemp e,salgrade s where e.sal between s.losal and s.hisal)e1,dept d whered.deptno=e1.deptno and e1.grade != 4;
方法2:三表连接!!!!!!!!
Select e.ename,d.dname,d.loc,s.grade from emp e,dept d,salgrade s wheree.deptno=d.deptno and e.sal between s.losal and s.hisal and s.grade<>4;
13、 查找出职位和‘MARTIN’或者‘SMITH’一样的员工的平均工资
Select avg(sal) from emp where job in(selectjob from emp where ename in(‘MARTIN’,’SMITH’));
14、 查找出不属于任何部门的员工
Select * from emp where deptno is null;
15、 按照部门统计员工数,查出员工数最多的部门的第二名到第五名(列出部门名字,部门位置)
(1)统计各部门员工数,并降序排序
Select count(*), deptno from emp group by deptno order by count(*) desc;
(2)2-5名
Select * from (Select rownum ro,x.* from (Select count(*), deptno fromemp group by deptno order by count(*) desc)x) where ro>=2 and ro<=5;
(3)
Select d.*,x1.* from dept d,( Select * from (Select rownum ro,x.* from(Select count(*), deptno from emp group by deptno order by count(*) desc)x) wherero>=2 and ro<=5)x1 where d.deptno=x1.deptno;
16、 查出KING所在部门的部门号、部门名称、部门人数
(1)king所在的部门
Select deptno from emp where ename=’KING’
(2)
Select d.deptno,d.dname,count(*) from empe,dept d where e.deptno=d.deptno and d.deptno=( Select deptno from emp whereename=’KING’) group by d.deptno,d.dname;
17、 查出KING所在部门的工作年限最大的员工名字
Select ename from emp where deptno=(select deptno from empwhere ename=’KING’) and hiredate=(select min(hiredate) from emp where deptno=( selectdeptno from emp where ename=’KING’));
18、 查出工资成本最高的部门的部门号和部门名称
(1)工资成本
Select sum(sal)+sum(nvl(comm,0)) sum_sal,deptno from emp group by deptno order by sum_sal desc;
(2)找到第一位
Select d.*,x.sum_sal from dept d ,( Select sum(sal)+sum(nvl(comm,0))sum_sal,deptno from emp group by deptno orderby sum_sal desc)x where x.deptno=d.deptno and rownum=1;
oracle高级查询练习题的更多相关文章
- oracle高级查询(实例基于scott用户四张表)
oracle高级查询(实例基于scott用户四张表) 分组查询 多表查询 子查询 综合实例 ====================================================== ...
- Oracle高级查询之OVER
注释:为了方便大家学习和测试,所有的例子都是在Oracle自带用户Scott下建立的 oracel的高级用法:rank()/dense_rank() over(partition by ...orde ...
- Oracle高级查询,over 用法
注:标题中的红色order by是说明在使用该方法的时候必须要带上order by. 一.rank()/dense_rank() over(partition by ...order by ...) ...
- Oracle高级查询之CONNECT BY
为了方便大家学习和测试,所有的例子都是在Oracle自带用户Scott下建立的. Oracle中的select语句可以用start with ... connect by prior ...子句实现递 ...
- Oracle 高级查询
Oracle SQL 一些函数用法 以下sql环境都是在 Oracle 11g/scott完成 Group by 与GROUP BY一起使用的关建字 GROUPING,GROUP SET,ROLLUP ...
- Oracle高级查询、事物、过程及函数
一.SQL函数 1.分类:单行函数(日期.数值.转换.字符等),多行函数,也称为分组函数(max.min.avg.sum.row_number.rank等). 2.数值函数 abs(n):求数字n的绝 ...
- Oracle高级查询,事物,过程及函数
一 数值函数 数值 abs,ceil,floor,round,trunc字符串 instr,substr SQL>SELECT 'ABS':'|| ABS(-12.3) FROM DUAL; 运 ...
- Oracle 高级查询、事物、过程及函数
一.Sql函数 1.数值函数(输入参数和返回值都是数值型,多数函数精确到38位) --多少次方 ,) from dual; --开方 ) from dual; --绝对值 ) from dual; - ...
- Oracle高级查询之over(partition by...)
现有表,数据如下: eg1:查询年龄第二的队员 通常写法: select * from (select a.*, rownum r from (select t.* from l_student_in ...
随机推荐
- python之random库
random库是用于产生并运用随机数的标准库 1. random库函数 (1)random.seed(a) 设置随机种子数,可以是浮点数或整数,如果不设置的话,则random库默认以系统时间产生当作随 ...
- 为什么要编写轻量级的View Controller??
1.作为iOS项目中最大的文件,ViewControllers中的代码复用率几乎是最低的2.重量级的View COntroller加大了测试的复杂度.所以关注ViewController的瘦身,把业务 ...
- 【spring源码学习】spring的远程调用实现源码分析
[一]spring的远程调用提供的基础类 (1)org.springframework.remoting.support.RemotingSupport ===>spring提供实现的远程调用客 ...
- 为什么新生代内存需要有两个Survivor区?
对于常见的GC算法,我们都应该知道,例如:标记清除算法.复制算法.标记整理算法等.标记清除算法由于回收之后存在大量的内存碎片,存在效率和空间问题!为了解决效率问题,引出了复制算法!熟悉GC算法的小伙伴 ...
- (装)Android杂谈--禁止TimePicker控件通过keyboard输入
Android 4.1版本以上用的是类似与ios的滚动时间控件,但是4.1以下,用的TimePicker确实通过点击上下按钮来更改时间的,虽然也提供了编辑框编辑,但是可能会超出编辑范围 如果要禁止编辑 ...
- nginx 限制
在nginx.conf里的http{}里添加: http{ limit_conn_zone $binary_remote_addr zone=perip:10m; limit_conn_zone $s ...
- MariaDB 脚本
研究MariaDB, 需要mock up一些假数据: 生成n个长度整型数的函数rand_num: CREATE DEFINER=`root`@`localhost` FUNCTION `rand_nu ...
- proc文件系统详解(原创)
Linux系统上的/proc目录是一种文件系统,即proc文件系统.与其它常见的文件系统不同的是,/proc是一种伪文件系统(也即虚拟文件系统),存储的是当前内核运行状态的一系列特殊文件,用户可以通过 ...
- Window中的内存地址(小知识)
现在的编辑器大部分工作都是内存管理托管型,所以很少直接对Window的内存地址直接管理了. Window中的内存地址主要是以16进制数字体现的,当操作系统为32位时,那么每个内存地址为2的32次方,也 ...
- shell脚本把昨天的txt打成tar包
now=`date '+%Y-%m-%d %H:%M:%S'` echo ${now} yesterday1=`date -d yesterday +%Y-%m-%d` echo ${yestoday ...