sql面试题

面试题:

一.哪些部门的薪水最高两位的工种有哪些?(分组取前几位)

1.每个部门每个工种的薪水和

1
2
3
4
5
6
7
8
9
select * from emp;

create view sal
as
select
deptno,job,sum(sal+ifnull(comm,0)) as sal
from emp group by deptno,job;

select * from sal;

2.从1结果集 找出哪些部门的工种薪水和最高的前2位工种是什么?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
select 
a.*
from sal a
where
(
select count(*) from sal b
where a.deptno=b.deptno and a.sal>b.sal
)

#假设取薪水和最高的每个部门的哪个工种?
select * from sal;
insert into emp values (1000, 'BOSS', 'BOSS', NULL, '1981-06-09', 9000, null, 10);

#取top 1
select
a.*
from sal a
where (
select count(*) from sal b
where a.deptno=b.deptno and a.sal<b.sal
) = 0
order by a.deptno;


select
a.*
from sal a
where (
select count(*) from sal b where a.deptno=b.deptno and a.sal<b.sal
) <= 1
order by a.deptno asc ,a.sal desc;

本文标题:sql面试题

文章作者:skygzx

发布时间:2019年04月05日 - 19:42

最后更新:2019年04月05日 - 19:49

原始链接:http://yoursite.com/2019/04/05/sql面试题/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

-------------本文结束感谢您的阅读-------------
0%