Fork me on GitHub

员工部门表综合查询

员工部门表综合查询

创建员工部门表

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
32
33
34
35
36
37
38
39
40
CREATE DATABASE oa;
USE oa;
CREATE TABLE dept(
deptno INT PRIMARY KEY,
dname VARCHAR(20),
loc VARCHAR(20)
)
DROP TABLE emp
CREATE TABLE emp(
empno INT PRIMARY KEY,
ename VARCHAR(20) NOT NULL,
job VARCHAR(20) CHECK (job IN ('CLERK','SALESMAN','MANAGER','SALESMAN','ANALYST')),
mgp INT ,
hiredate DATETIME ,
sal DECIMAL(10,2),
comm DECIMAL(10,2),
DEPTNO INT FOREIGN KEY REFERENCES dept(deptno)
)
INSERT INTO dept VALUES (10,'ACCOUNTING','NEWTORK')
INSERT INTO dept VALUES (20,'RESEARCH','DALLAS')
INSERT INTO dept VALUES (30,'SALES','CHICAGO')
INSERT INTO dept VALUES (40,'OPERATIONS','BOSTON')
insert into emp values(7369,'SMITH','CLERK',7902,'1980-12-17',1640,NULL,20);
insert into emp values(7499,'ALLEN','SALESMAN',7698,'1981-2-20',11400,300,30);
insert into emp values(7521,'WARD','SALESMAN',7698,'1981-2-22',5200,500,30);
insert into emp values(7566,'JOENS','MANAGER',7839,'1981-4-2',7015,NULL,20);
insert into emp values(7654,'MARTIN','SALESMAN',7698,'1981-9-28',5200,1400,30);
insert into emp values(7698,'BLAKE','MANAGER',7839,'1981-5-1',5900,NULL,30);
insert into emp values(7782,'CLARK','MANAGER',7839,'1981-6-9',2470,NULL,10);
insert into emp values(7788,'SCOTT','ANALYST',7566,'1987-4-19',3040,NULL,20);
insert into emp values(7844,'TURNER','SALESMAN',7698,'1980-12-17',6200,0,30);
insert into emp values(7876,'ADAMS','CLERK',7788,'1981-9-8',2240,NULL,20);
insert into emp values(7900,'JAMES','CLERK',7698,'1987-5-23',4000,NULL,30);
insert into emp values(7902,'FORD','ANALYST',7566,'1981-12-3',3040,NULL,20);
insert into emp values(7934,'MILLER','CLERK',7782,'1982-12-3',2620,NULL,10);

查询20部门的所有员工信息。

1
select * from emp where deptno=20;

查询所有工种为CLERK的员工的员工号、员工名和部门号。

1
select empno,ename,deptno from emp where job='CLERK';

查询奖金(COMM)高于工资(SAL)的员工信息。

1
select * from emp where isnull(comm,0)>sal

查询奖金高于工资的20%的员工信息。

1
select * from emp where isnull(comm,0)>sal*0.2

查询所有工种不是MANAGER和CLERK,且工资大于或等于2000的员工的详细信息。

1
2
3
select * from emp
where job not in('MANAGER','CLERK')
and sal>=2000

查询有奖金的员工的不同工种。

1
2
select distinct job from emp
where comm is not null

查询没有奖金或奖金低于100的员工信息。

1
2
3
select *
from emp
where comm is null or comm<100

查询各月倒数第3天(倒数第2天)入职的员工信息。

1
2
3
select *
from emp
where DATENAME(day,hiredate+3)=1

查询工龄大于或等于25年的员工信息。

1
2
3
select ename 姓名,hiredate 雇用日期,datediff(year,hiredate,getdate()) 工资
from emp
where datediff(year,hiredate,getdate())>=25

查询员工信息,要求以首字母大写的方式显示所有员工的姓名。

1
2
select upper(SUBSTRING(ename,1,1))+lower(substring(ename,2,(len(ename)-1)))
from emp

查询员工名正好为6个字符的员工的信息。

1
select ename from emp where len(ename)=6

查询员工名字中不包含字母“S”的员工。

1
select ename from emp where ename not like '%S%'

查询员工姓名的第二字母为“M”的员工信息。

1
2
select ename from emp
where ename like '_M%'

查询所有员工姓名的前三个字符。

1
2
select ename 员工姓名,substring(ename,1,3) 员工姓名的前三个字符
from emp

查询员工的姓名和入职日期,并按入职日期从先到后进行排序。

1
2
3
select ename,hiredate
from emp
order by hiredate

显示所有员工的姓名、工种、工资和奖金,按工种降序排序,若工种相同则按工资升序排序。

1
2
3
select ename,job,sal,comm
from emp
order by job desc

查询在2月份入职的所有员工信息。

1
2
select * from emp
where datename(mm,hiredate)=2

查询至少有一个员工的部门信息。

1
2
3
4
5
select d.dname,count(empno) 部门人数
from emp e
right join dept d on d.deptno=e.deptno
group by d.dname,e.deptno
having count(empno)>=1

查询至少有两个员工的部门信息。

1
2
3
4
5
select d.dname,count(empno) 部门人数
from emp e
right join dept d on d.deptno=e.deptno
group by d.dname,e.deptno
having count(empno)>1

查询工资比SMITH员工工资高的所有员工信息。

1
2
3
4
5
select *
from emp
where sal>(
select sal from emp where ename='SMITH'
)

查询所有员工的姓名及其直接上级的姓名。

1
2
3
4
select ename 员工的姓名,(
select ename from emp e2 where e2.empno=e1.mgp
) 直接上级
from emp e1

查询入职日期早于其直接上级领导的所有员工信息。

1
2
3
4
5
6
7
8
9
select ename 员工的姓名,hiredate 入职日期,(
select ename from emp e2 where e2.empno=e1.mgp
) 直接上级,(
select hiredate from emp e2 where e2.empno=e1.mgp
) 直接上级入职日期
from emp e1
where e1.hiredate<(select hiredate
from emp e2 where e2.empno=e1.mgp
)

查询所有部门及其员工信息,包括那些没有员工的部门。

1
2
3
select dept.dname,emp.ename
from dept
left outer join emp on emp.deptno=dept.deptno

查询所有员工及其部门信息,包括那些还不属于任何部门的员工。

1
2
3
select dept.dname,emp.ename
from emp
left outer join dept on emp.deptno=dept.deptno

查询所有工种为CLERK的员工的姓名及其部门名称。

1
2
3
4
select dept.dname,emp.ename,emp.job
from emp
left outer join dept on emp.deptno=dept.deptno
where job='CLERK'

查询最低工资大于2500的各种工作。

1
2
3
select job,sal
from emp
where sal>2500

查询平均工资低于2000的部门及其员工信息。

1
2
3
4
5
6
select *
from dept left outer join emp on dept.deptno=emp.deptno
where dept.deptno in (
select deptno from emp
group by deptno
having avg(sal)<2000)

查询在SALES部门工作的员工的姓名信息。

1
2
3
4
5
6
7
8
9
表连接
select *
from dept left outer join emp on dept.deptno=emp.deptno
where dept.dname='SALES'
子查询
select * from emp
where emp.deptno=(
select deptno from dept where dname='SALES'
)

查询工资高于公司平均工资的所有员工信息。

1
2
3
4
select * from emp
where sal>(
select avg(sal)
from emp)

查询出与SMITH员工从事相同工作的所有员工信息。

1
2
3
4
select * from emp where job = (
select job
from emp
where ename='SMITH')

列出工资等于30部门中某个员工的工资的所有员工的姓名和工资。

1
2
3
4
5
6
select *
from emp
where sal in (
select sal
from emp
where deptno=30) and deptno!=30

查询工资高于30部门工作的所有员工的工资的员工姓名和工资。

1
2
3
4
5
6
select *
from emp
where sal > all(
select sal
from emp
where deptno=30)

查询每个部门中的员工数量、平均工资和平均工作年限。

1
2
3
4
5
select dname 部门,count(ename) 员工数量,isnull(avg(sal),0) 平均工资,
isnull(avg(datediff(yy,hiredate,getdate())),0) 平均工作年限
from dept d
left outer join emp e on d.deptno=e.deptno
group by d.dname

查询从事同一种工作但不属于同一部门的员工信息。

1
2
3
4
5
6
7
select *
from emp e1
where e1.job in (
select distinct e2.job
from emp e2
where e2.deptno != e1.deptno
)

查询各个部门的详细信息以及部门人数、部门平均工资。

1
2
3
4
select d.dname 部门名称,d.deptno 部门编号,count(e.empno) 人数,avg(e.sal) 平均工资
from dept d
left outer join emp e on d.deptno=e.deptno
group by d.deptno,d.dname

查询各种工作的最低工资。

1
2
3
select job 工种,min(sal) 最低工资
from emp
group by job

查询各个部门中不同工种的最高工资。

1
2
3
select dname 部门名称,job 工种,max(isnull(sal,0)) 最高工资
from dept d left join emp e on d.deptno=e.deptno
group by job,dname

查询10号部门员工及其领导的信息。

1
2
3
select deptno 部门,ename 姓名 ,(select e2.ename from emp e2 where e2.mgp=e1.empno) 上级领导
from emp e1
where deptno=10

查询各个部门的人数及平均工资。

1
2
3
select dname 部门名称,count(ename) 部门人数,avg(isnull(sal,0)) 平均工资
from dept d left outer join emp e on d.deptno=e.deptno
group by d.dname

查询工资为某个部门平均工资的员工的信息。

1
2
3
4
5
select * from emp
where sal in(
select avg(sal)
from emp group by deptno
)

查询工资高于本部门平均工资的员工的信息。

1
2
3
4
5
6
7
select *
from emp e1
where sal>(
select avg(sal)
from emp e2
where e2.deptno=e1.deptno
)

查询工资高于本部门平均工资的员工的信息及其部门的平均工资。

1
2
3
4
5
select *,(select avg(sal) from emp e2 where e2.deptno=e1.deptno) 部门平均工资
from emp e1
where sal>(
select avg(sal) from emp e2 where e2.deptno=e1.deptno
)

查询工资高于20号部门某个员工工资的员工的信息。

1
2
3
4
5
select *
from emp e1
where sal> any(
select sal from emp e where deptno=20
)

统计各个工种的员工人数与平均工资。

1
2
3
select job 工种,count(empno) 员工人数,avg(sal) 平均工资
from emp
group by job

统计每个部门中各工种的人数与平均工资。

1
2
3
select dname 部门,job 工种,count(empno) 人数,avg(isnull(sal,0)) 平均工资
from dept d left outer join emp e on d.deptno=e.deptno
group by job,dname

查询其他部门中工资、奖金与30号部门某员工工资、奖金都相同的员工的信息。没有查询结果

1
2
3
4
5
6
7
select *
from emp e
where isnull(sal,0)+isnull(comm,0) in (
select isnull(sal,0)+isnull(comm,0)
from emp e1
where e1.deptno=30 and e.sal=e1.sal and e.comm=e1.comm and e.deptno!=30
)

查询部门人数大于5的部门的员工信息。

1
2
3
4
5
6
select * from emp
where deptno in(
select deptno
from emp
group by deptno
having count(empno)>5)

查询所有员工工资都大于1000的部门的信息。

1
2
3
4
5
6
7
select *
from dept d
where deptno in (
select deptno from emp e
group by deptno
having min(sal)>1000
)

查询所有员工工资都大于1000的部门的信息及其员工信息。

1
2
3
4
5
6
7
select *
from dept d left outer join emp e on d.deptno=e.deptno
where e.deptno in (
select deptno from emp e1
group by deptno
having min(sal)>1000
)

查询所有员工工资都在900~3000之间的部门的信息。

1
2
3
4
5
6
select * from dept
where deptno in(
select deptno from emp
group by deptno
having min(sal)>900 and max(sal)<3000
)

查询有工资在900~3000之间的员工所在部门的员工信息。

1
2
3
4
5
6
select * from emp
where deptno in(
select deptno from emp
group by deptno
having min(sal)>900 and max(sal)<3000
)

查询每个员工的领导所在部门的信息。

1
2
3
4
5
6
7
8
select ename 员工,(
select e1.ename from emp e1 where emp.mgp=e1.empno
) 领导,(
select d.dname
from emp e left outer join dept d on e.deptno=d.deptno
where emp.mgp=e.empno
) 领导所在部门
from emp

查询人数最多的部门信息。

1
2
3
4
5
6
select * from dept
where deptno =(
select top 1 deptno
from emp
group by deptno
order by -count(empno))

查询30号部门中工资排序前3名的员工信息。

1
2
3
4
select top 3 *
from emp
where deptno=30
order by -sal

查询所有员工中工资排序在5到10名之间的员工信息。

1
2
3
4
5
6
select top 5 *
from (
select top 10 *
from emp
order by -sal) e
order by sal

查询指定年份之间入职的员工信息。(1980-1985)

1
2
3
select *
from emp
where datename(year,hiredate) between 1980 and 1985
Your support will encourage me to continue to create!