Oracle 练习题P256

--根据Oracle数据库scott模式下的emp表和dept表,完成下列操作。

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

--(2)查询所有工种为CLERK的员工的员工号、员工名和部门号
select empno,ename,deptno from emp where job = 'CLERK';

--(3)查询奖金(COMM)高于工资(SAL)的员工信息
select * from emp where nvl(comm,0) > sal;

--(4)查询奖金高于工资的20%的员工信息
select * from emp where nvl(comm,0) > (sal * 0.2);

--(5)查询10号部门中工种为MANAGER和20号部门中工种为CLERK的员工的信息
select * from emp where (deptno = 10 and job = 'MANAGER') or (deptno = 20 and job = 'CLERK');

--(6)查询所有工种不是MANAGER和CLERK,且工资大于或等于2000的员工的详细信息
select * from emp where job not in ('MANAGER','CLERK') and sal >= 2000;

--(7)查询有奖金的员工的不同工种
select distinct job from emp where nvl(comm,0) <> 0;

--(8)查询所有员工工资与奖金的和
select ename,sal,nvl(comm,0),(sal+nvl(comm,0)) from emp;

--(9)查询没有奖金或奖金低于100的员工信息
select * from emp where nvl(comm,0) < 100;

--(10)查询各月倒数第二天入职的员工信息
select * from emp where hiredate = last_day(hiredate) - 2;

--(11)查询工龄大于或等于10年的员工信息
select * from emp where months_between(sysdate,hiredate) > (10 * 12);

--(12)查询员工信息,要求以首字母大写的方式显示所有员工的姓名
select empno,initcap(ename),job,mgr,hiredate,sal,comm,deptno from emp;

--(13)查询员工名正好为6个字母的员工的信息
select * from emp where length(ename) = 6;

--(14)查询员工名字中不包含字母“S”的员工
select * from emp where instr(ename,'S') > 0;

--(15)查询员工姓名的第2个字母为“M”的员工信息
select * from emp where instr(ename,'M') = 2;

--(16)查询所有员工姓名的前3个字符
select substr(ename,1,3) from emp;

--(17)查询所有员工的姓名,如果包含字母“s”,则用“S”替换
select replace(ename,'S','s') from emp;

--(18)查询员工的姓名和入职日期,并按入职日期从先到后进行排序
select ename,hiredate from emp order by hiredate asc;

--(19)显示所有员工的姓名、工种、工资和奖金,按工种降序排序,若工种相同则按工资升序排序
select ename,job,sal,comm from emp order by job desc, sal asc;

--(20)显示所有员工姓名、入职的年份和月份,按入职日期所在的月份排序,若月份相同则按入职的年份排序
select ename,to_char(hiredate,'yyyy') hiredate_year,to_char(hiredate,'mm')hiredate_month
from emp order by hiredate_year,hiredate_month;

--(21)查询在2月份入职的所有员工信息
select * from emp where to_char(hiredate,'mm') = '02';

--(22)查询至少有一个员工的部门信息
select d.deptno,d.dname,d.loc,e.num from dept d
join (select deptno,count(empno) num from emp group by deptno) e
on d.deptno = e.deptno where num > 1;

--(23)查询工资比SMITH员工工资高的所有员工信息
select * from emp where sal > (select sal from emp where ename = 'SMITH');

--(24)查询所有员工的姓名及其直接上级的姓名
select e1.ename name,e2.ename mgr from emp e1
join emp e2 on e1.mgr = e2.empno;

--(25)查询入职日期早于其直接上级领导的所有员工信息
select * from emp where empno in
(select e1.empno from emp e1 join emp e2 on e1.mgr = e2.empno where e1.hiredate < e2.hiredate);

--(26)查询所有部门及其员工信息,包括那些没有员工的部门
select * from dept d left join (select * from emp) e on d.deptno = e.deptno;

--(27)查询所有员工及其部门信息,包括那些还不属于任何部门的员工
select * from dept d right join (select * from emp) e on d.deptno = e.deptno;

--(28)查询所有工种为CLERK的员工的姓名及其部门名称
select e.ename,d.dname from emp e join dept d on e.deptno = d.deptno;

--(29)查询最低工资大于2500的各种工作
select job,min(sal) min_sal from emp group by job having min(sal) > 2500;

--(30)查询平均工资低于2000旳部门及其员工信息
select * from dept d join emp e on d.deptno = e.deptno where d.deptno =
(select deptno from emp group by deptno having avg(sal) < 2000);

--(31)查询在SALES部门工作的员工的姓名信息
select ename from dept d join emp e on d.deptno = e.deptno where d.dname = 'SALES';

--(32)查询工资高于公司平均工资的所有员工信息
select * from emp where sal > (select avg(sal) from emp);

--(33)查询与SMITH员工从事相同工作的所有员工信息
select * from emp where job = (select job from emp where ename = 'SMITH');

--(34)列出工资等于30号部门中某个员工工资的所有员工的姓名和工资
select ename,sal from emp where sal in (select sal from emp where deptno = 30);

--(35)查询工资高于30号部门中工作的所有员工的工资的员工姓名和工资
select ename,sal from emp where sal > (select max(sal) from emp group by deptno having deptno = 30);

--(36)查询每个部门中的员工数量、平均工资和平均工作年限
select count(*) num,avg(sal) avg_sal,avg(months_between(sysdate,hiredate))/12 age from emp group by deptno;

--(37)查询各个部门的详细信息以及部门人数、部门平均工资
select d.deptno,d.dname,d.loc,a.num,a.avg_sal from dept d
join (select deptno,count(*) num,avg(sal) avg_sal,avg(months_between(sysdate,hiredate))/12 age from emp group by deptno) a
on d.deptno = a.deptno;

--(38)查询各个部门中不同工种的最高工资
select deptno,job,max(sal) from emp group by deptno,job order by deptno,job;

--(39)查询10号部门员工及其领导的信息
select * from emp where deptno = 10 or mgr in (select empno from emp where deptno = 10);

--(40)查询工资为某个部门的平均工资的员工信息
select * from emp where sal in (select avg(sal) from emp group by deptno);

--(41)查询工资高于本部门平均工资的员工的信息
select e1.* from emp e1
join (select deptno,avg(sal) avg_sal from emp group by deptno) e2 on e1.deptno = e2.deptno
where e1.sal > e2.avg_sal;

--(42)查询工资高于本部门平均工资的员工的信息及其部门的平均工资
select e1.*,e2.dept_avg_sal from emp e1
join (select deptno,avg(sal) dept_avg_sal from emp group by deptno) e2 on e1.deptno = e2.deptno
where e1.sal > e2.dept_avg_sal;

--(43)查询工资高于20号部门某个员工工资的员工的信息
select * from emp where sal > any(select sal from emp where deptno = 20) order by empno;
select * from emp where sal > (select min(sal) from emp where deptno = 20) order by empno;

--(44)统计各个工种的员工人数与平均工资
select job,count(*),avg(sal) from emp group by job;

--(45)统计每个部门中各工种的人数与平均工资
select deptno,job,count(*),avg(sal) from emp group by deptno,job order by deptno,job;

--(46)查询工资、奖金与10号部门某员工工资、奖金都相同的员工信息
select * from emp where (sal,nvl(comm,0)) in (select sal,nvl(comm,0) from emp where deptno = 10);

--(47)查询部门人数大于5的部门的员工信息
select * from emp where deptno in
(select deptno from emp group by deptno having count(*) > 5);

--(48)查询所有员工工资都大于2000的部门的信息
select d.*,a.avg_sal from dept d
join (select deptno,avg(sal) avg_sal from emp group by deptno) a on d.deptno = a.deptno where avg_sal > 2000;

--(49)查询所有员工工资都大于2000的部门的信息及员工信息
select d.*,a.avg_sal,e.* from dept d
join (select deptno,avg(sal) avg_sal from emp group by deptno) a on d.deptno = a.deptno
join emp e on d.deptno = e.deptno
where avg_sal > 2000 order by d.deptno;

--(50)查询所有员工工资都在2000~3000之间的部门的信息
select d.* from dept d
join (select deptno,min(sal) min_sal,max(sal) max_sal from emp group by deptno) a on d.deptno = a.deptno
where min_sal > 500 and max_sal < 3000;

--(51)查询所有工资在2000~3000之间的员工所在部门的员工信息
select * from emp where deptno in
(select distinct deptno from emp where sal between 2000 and 3000);

--(52)查询人数最多的部门信息
select * from 
(select d.*,a.num from dept d
join (select deptno,count(*) num from emp group by deptno) a on d.deptno = a.deptno order by num desc)
where rownum <= 1;

--(53)查询30号部门中工资排序前3名的员工信息
select * from 
(select * from emp where deptno = 30 order by sal desc)
where rownum <=3;

--(54)查询所有员工中工资排序在5~10名之间的员工信息
select * from (select rownum n,e.* from (select * from emp order by sal desc) e) where n between 5 and 10;

--(55)向emp表中插入一条记录,员工号为1357,员工名字为oracle,工资为2050,部门号为20,入职日期为2002年5月10日
create table emp2 as select * from emp;
insert into emp2(empno,ename,sal,deptno,hiredate) values(1357,'oracle',2050,20,to_date('2002-5-10','yyyy-mm-dd'));
select * from emp2;

--(56)向emp表中插入一条记录,员工名为FAN,员工号为8000,其他信息与SMITH员工的信息相同
insert into emp2 select 8000,'FAN',job,mgr,hiredate,sal,comm,deptno from emp2 where ename='SMITH';
select * from emp2;

--(57)将各部门员工的工资修改为该员工所在部门平均工资加1000
select deptno,avg(sal) from emp2 group by deptno order by deptno;
update emp2 e1 set sal = (select avg(sal) + 1000 from emp2 e2 group by deptno having e1.deptno = e2.deptno);
select deptno,avg(sal) from emp2 group by deptno order by deptno;

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545591.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

oracle中dbms_如何在DBMS中找到关系的最高范式?

oracle中dbmsTo find the highest normal form of a relation, you have to first understand the basics of Functional dependency, Candidate keys, and Normal Forms. 要查找关系的最高范式 &#xff0c;您必须首先了解功能依赖项 &#xff0c;候选键和范式的基础。 In re…

MySQL 面试题汇总

1.说一下 MySQL 执行一条查询语句的内部执行过程? 答:MySQL 执行一条查询的流程如下: 客户端先通过连接器连接到 MySQL 服务器;连接器权限验证通过之后,先查询是否有查询缓存,如果有缓存(之前执行过此语句)则直接返回缓存数据,如果没有缓存则进入分析器;分析器会对查…

几种简单电路知识汇总

这篇文章用于记录平时设计电路或者在书中遇到的一些电路方面的知识&#xff0c;会不定期更新。就先从运算放大器开始&#xff0c;对此做个简单的介绍。 运算放大器 说到运算放大器就不得不说两个概念&#xff0c;虚短与虚断。 虚短&#xff1a; 在理想情况下&#xff0c;运算…

Oracle 创建表 练习题

a) 建立下列教学管理用的数据表。注意&#xff0c;表名和字段名都是英文。 学生表&#xff08;student&#xff09; 字段 名称 数据类型 约束 学号 S_NO CHAR(6) 主键 姓名 S_NAME CHAR(10) 非空 性别 S_SEX CHAR(2) 只取男、女 出生日期 S_BIRTHDAY DA…

算法常用面试题汇总

1.说一下什么是二分法?使用二分法时需要注意什么?如何用代码实现? 二分法查找(Binary Search)也称折半查找,是指当每次查询时,将数据分为前后两部分,再用中值和待搜索的值进行比较,如果搜索的值大于中值,则使用同样的方式(二分法)向后搜索,反之则向前搜索,直到搜…

Java LocalDateTime类| 带示例的getDayOfYear()方法

LocalDateTime类getDayOfYear()方法 (LocalDateTime Class getDayOfYear() method) getDayOfYear() method is available in java.time package. getDayOfYear()方法在java.time包中可用。 getDayOfYear() method is used to get the field value day-of-year from this date-t…

51单片机——交通灯

原理图 功能描述 1、基本功能就是如同红绿灯一般&#xff0c;不做赘述。   2、红灯时长和绿灯时长可通过按键设置&#xff0c;即按键列中的上面4个&#xff0c;当这4个按键有一个按下后便进入时长设置功能&#xff0c;设置完成后按最下面两个按键&#xff08;紧急控制按钮&am…

设置TextField内文字距左边框的距离

2019独角兽企业重金招聘Python工程师标准>>> //设置文本框左边的viewUITextField *textField [[UITextField alloc]init];textField.frame CGRectMake(10, 30, 300, 30);[self.view addSubview:textField];textField.leftView [[UIView alloc]initWithFrame:CGRe…

Oracle注册表修改 乱码编码

HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME0"NLS_LANG"值改为"SIMPLIFIED CHINESE_CHINA.ZHS16GBK"AMERICAN.AL32UTF8乱码更改oracle 10g装上后,建了个表写入中文数据,发现通过工具DbVisualizer 6.5 写入/读取中文都正常,就sqlplus和PL/SQL Developer不正常…

设计模式常见面试题汇总

1.说一下设计模式?你都知道哪些? 答:设计模式总共有 23 种,总体来说可以分为三大类:创建型模式( Creational Patterns )、结构型模式( Structural Patterns )和行为型模式( Behavioral Patterns )。 分类包含关注点创建型模式工厂模式、抽象工厂模式、单例模式、建…

java 根据类名示例化类_Java LocalDateTime类| minusMinutes()方法与示例

java 根据类名示例化类LocalDateTime类minusMinutes()方法 (LocalDateTime Class minusMinutes() method) minusMinutes() method is available in java.time package. minusMinutes()方法在java.time包中可用。 minusMinutes() method is used to subtract the given minutes …

类的三大特性

类有三大特性&#xff1a;继承&#xff0c;封装&#xff0c;多态&#xff0c;这个也是介绍类的时候&#xff0c;必须提到的话题&#xff0c;那么今天就来看一下OC中类的三大特性&#xff1a; 一、封装 学习过Java中类的同学可能都知道了&#xff0c;封装就是对类中的一些字段&a…

JVM 面试题汇总

1.什么是 JVM?它有什么作用? 答:JVM 是 Java Virtual Machine(Java 虚拟机)的缩写,顾名思义它是一个虚拟计算机,也是 Java 程序能够实现跨平台的基础。它的作用是加载 Java 程序,把字节码翻译成机器码再交由 CPU 执行的一个虚拟计算器。 2.JVM 主要组成部分有哪些? …

Java BigInteger类| isProbablePrime()方法与示例

BigInteger类isProbablePrime()方法 (BigInteger Class isProbablePrime() method) isProbablePrime() method is available in java.math package. isProbablePrime()方法在java.math包中可用。 isProbablePrime() method is used to check whether this BigInteger is probab…

20141215胡思乱想

书读得越多&#xff0c;越发现自己无知。 我们的就像在一个空白的圆里面&#xff0c;周围都是黑暗&#xff0c;不断成长&#xff0c;圆会越来越大&#xff0c;接触到的黑暗会越多。所以要时刻保持谦逊。 Stay Hungry, Stay Foolish!! 时刻要思考&#xff0c;不要急于求成。 转载…

常见面试题翻车合集

1.去掉 main 方法的 static 修饰符,程序会怎样? A:程序无法编译 B:程序正常编译,正常运行 C:程序正常编译,正常运行一下马上退出 D:程序正常编译,运行时报错 答:D 题目解析:运行时异常如下: 错误: main 方法不是类 xxx 中的 static, 请将 main 方法定义为: p…

c语言i++和++i程序_使用C ++程序从链接列表中消除重复项

c语言i和i程序Given a sorted linked list (elements are sorted in ascending order). Eliminate duplicates from the given LL, such that output LL contains only unique elements. 给定一个排序的链表(元素按升序排序)。 从给定的LL中消除重复项&#xff0c;以便输出LL仅…

struts的开发模式

<constant name"struts.devMode" value"true" /> struts.devMode也就是struts的开发模式&#xff0c;默认值为false&#xff0c;这里修改为true就可以了&#xff0c;以后一旦就该这个文件中的配置就不用去重启tomcat。struts2.1的bug&#xff0c;tom…

nginx启动与停止

转自&#xff1a;http://www.nginx.cn/nginxchscommandline#commandnginx启动sudo /usr/local/nginx/nginx (nginx二进制文件绝对路径&#xff0c;可以根据自己安装路径实际决定)nginx从容停止命令&#xff0c;等所有请求结束后关闭服务ps -ef |grep nginxPID PPID USER …

编程c语言 十进制转八进制_使用C编程语言处理八进制值

编程c语言 十进制转八进制Octal value has 8 digit values from 0 to 7, with the base 8. (Read more about Computer number systems), here we will learn how to work with octal values in c programming language? 八进制值具有从0到7的8位数字&#xff0c;以8为底。(阅…