SQL-SELECT题


--1查询20号部门的所有员工信息
select *from scott.emp where deptno=20;

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

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

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

select * from scott.emp where comm>sal;

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

select * from scott.emp where comm>0.2*sal;

--5查询10号部门中工种为MANAGER和20号部门中工种为CLERK的员工的信息。

select * from scott.emp where( job='MANAGER' and deptno=10) or (job='CLERK' and deptno=20);

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

select * from scott.emp where job not in('MANAGER','CLERK') and sal>=2000;

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

select distinct(job) from scott.emp where comm>=0;

Select job from scott.emp where comm>0 group by job;

--8查询所有员工工资与奖金的和。

Select ename,sal+nvl(comm,0) from scott.emp

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

select * from scott.emp where (comm is null)or (comm<100);

--10查询各月倒数第2天入职的员工信息。

select * from scott.emp where hiredate=last_day(hiredate)-1;

--11查询龄大于或等于10年的员工信息。

select * from scott.emp where extract(year from current_date)-extract(year from hiredate)>=10;

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

select initcap(ename),sal,deptno,hiredate,comm,job,empno from scott.emp;

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

select * from scott.emp where (length(ename)=6);

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

select * from scott.emp where ename not like'%S%';

--15查询员工姓名的第2个字母为“M”的员工信息。

select * from scott.emp where ename like '_M%';

--16查询所有员工姓名的前3个字符。

select substr(ename,1,3) from scott.emp;

--17查询所有员工的姓名,如果包含字母“s”,则用“S”替换。

select replace (ename,'s','S') from scott.emp;

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

select ename,hiredate from scott.emp order by hiredate ;

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

select ename,job,sal,comm from scott.emp order by job desc,sal;

--20显示所有员工的姓名,入职的年份和月份,按入职日期所在的月份排序,若月份相同则按入职的年份排序。

select ename,extract(year from hiredate) y,extract(month from hiredate) m from scott.emp order by m,y;

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

select * from scott.emp where extract(month from hiredate)=2;

--22查询所有员工入职以来的工作期限,用“**年**月**日”的形式表示。

select ename,extract(year from hiredate

)||'年'||extract(month from hiredate)||'月'||extract(day from hiredate)||'日' from scott.emp;

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

Select * from scott.dept where deptno in(select deptno from scott.emp)

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

select * from scott.emp where sal >any(select sal from scott.emp where ename='SMITH');

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

select a.ename,b.ename from scott.emp a,scott.emp b where a.mgr=b.empno;

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

select a.* from scott.emp a,scott.emp b where a.mgr=b.empno and a.hiredate>b.hiredate;

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

select a.*,b.* from scott.emp a,scott.dept b where a.deptno(+)=b.deptno;

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

select ename,empno,sal,dept.deptno,dname,loc

from scott.emp right join scott.dept on scott.emp.deptno=scott.dept.deptno;

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

select ename,b.* from scott.emp a,scott.dept b where a.job='CLERK'and a.deptno=b.deptno;

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

select job,min(sal) from scott.emp group by job having min(sal)>2500 ;

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

select a.*,b.* from scott.emp a,scott.dept b where a.deptno =

(select deptno from scott.emp group by deptno having avg(sal)<2000 and a.deptno=b.deptno);

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

select ename from scott.emp where deptno in(select deptno from scott.dept where dname='SALES');

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

select * from scott.emp where sal>(select avg(sal)from scott.emp);

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

select * from scott.emp where job=(select job from scott.emp where ename='SMITH');

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

select ename,sal from scott.emp where sal in(select sal from scott.emp where deptno=30);

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

select ename,sal from scott.emp where sal>all(select sal from scott.emp where deptno=30);

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

select count(empno),avg(sal),avg(extract(year from current_date)-extract(year from hiredate)), deptno from scott.emp group by deptno;

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

select worker.ename,worker.empno,worker.sal,worker.deptno,

manager.ename,manager.empno,manager.sal from scott.emp worker

left join scott.emp manager on worker.mgr=manager.empno

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

select a.*,b.* from scott.dept a,(select deptno,count(*),avg(sal) from scott.emp group by de

ptno) b where a.deptno=b.deptno;

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

select min(sal),job from scott.emp group by job;

--41查询部门中不同工种的最高工资。

select deptno,job,max(sal) from scott.emp group by deptno,job;

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

select a.* from scott.emp a,scott.emp b where a.deptno=10 and a.mgr=b.empno;

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

select deptno,sum(empno),avg(sal) from scott.emp group by deptno;

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

select * from scott.emp where sal in(select avg(sal)from scott.emp group by deptno);

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

select a.* from scott.emp a where sal>(select avg(sal)from scott.emp b where a.deptno=b.deptno);

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

select a.*,(select avg(sal)from scott.emp where deptno=a.deptno) from scott.emp a where sal>(select avg(sal) from scott.emp where deptno=a.deptno);

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

select * from scott.emp where sal>any(select sal from scott.emp where deptno=20);

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

select job,count(*),avg(sal)from scott.emp group by job;

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

select deptno,job,count(*),avg(sal)from scott.emp group by deptno,job;

--50查询工资、奖金与10号部门某员工工资、奖金都相同的员工的信息。

select sal,comm from scott.emp where (sal,comm)=any(select sal,comm from scott.emp where deptno=10);

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

select * from scott.emp where deptno=any(select deptno from scott.emp group by deptno having count(*)>5);

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

select * from scott.dept where deptno not in (select deptno from scott.emp where sal<2000);

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

select a.*,b.* from scott.emp a ,scott.dept b

where a.deptno=b.deptno and a.deptno not in (select deptno from scott.emp where sal<2000);

--54查询所有员工工资都在2000——3000之间的部门的信息。

select * from scott.dept where deptno not in (select deptno from scott.emp where sal<2000 or sal> 3000);

--55查询所有工资在2000——3000之间的员工所在部门的员工信息。

select * from scott.emp where deptno in(select distinct deptno from scott.emp where sal between 2000 and 3000);

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

select a.* from scott.dept a, scott.emp b,scott.emp c

where a.deptno=c.deptno and b.mgr=c.empno;

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

select * from scott.dept where deptno in (select deptno from scott.emp group by deptno having count(*)>=all(select max(count(*)) from scott.emp group by deptno));

--58查询30号部门中工资排序前

3名的员工信息。

select rownum,a.* from(select * from scott.emp order by sal desc)a where rownum<=3 and deptno=30 order by sal desc;

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

select * from(select t.*,rank()over (partition by n order by sal) r

from (select '' as n,tt.* from scott.emp tt) t) where r>=5 and r<=10;

--60查询SMITH员工及其所有直接、间接下属员工的信息。

select * from scott.emp a where

(a.mgr=(select empno from scott.emp where ename='SMITH'))

or (a.empno=(select mgr from scott.emp where ename='SMITH'))

or (a.empno=(select empno from scott.emp where ename='SMITH'))

or (a.empno=(select mgr from scott.emp where empno=

(select mgr from scott.emp where ename='SMITH')));

--61查询SCOTT员工及其直接、间接上级员工的信息。

select * from scott.emp a where

a.empno=(select empno from scott.emp where ename='SCOTT')

or a.mgr=(select empno from scott.emp where ename='SCOTT')

or a.mgr=(select empno from scott.emp where mgr=

(select empno from scott.emp where ename='SCOTT' ));

--62以树状结构查询所有员工与领导之间的层次关系。

select lpad(' ',5*level-1)||empno EMPNO,lpad(' ',5*level-1)||ename ENAME from scott.emp start with empno=7839 connect by prior empno=mgr;

--63向EMP表中插入一条记录,员工号为1357,员工名字为oracle,工资为2050,部门号为20,入职日期为2002年5月10日。

insert into scott.emp(empno,ename,sal,deptno,hiredate) values(1357,'oracle',2050,20,to_date('2002-6-10','YYYY-MM-DD'));

--64向EMP表中插入一条记录,员工名为FAN,员工号为8000,其他信息与SMITH员工的信息相同。

insert into scott.emp(ename,empno,job,mgr,hiredate,sal,comm,deptno) values('FAN',8000,'CLERK',7902,to_date('1980-12-17','yyyy-mm-dd'),800,null,20);

--65将各部门员工的工资修改为该员工所在部门平均加1000。

update scott.emp e set sal=1000+(select avg(sal) from scott.emp where deptno=e.deptno);

你可能感兴趣的:(SQL)