oracle query
不等值连接查询
- 员工工资级别
- select e.empno,e.ename,e.sal,s.grade
- from emp e,salgrade s
- where e.sal between s.losal and s.hisal
外连接
外连接的意义:对于某些不成立的记录,仍然希望包含在最后的结果集中。
左外连接:当where e.deptno = d.deptno 不成立时,等号左边表的任意项仍被包含
左外连接写法: where e.deptno = d.deptno(+)
右外连接写法: where e.deptno = d.deptno(+)
按部门统计员工人数:部门号,部门名称,人数, (右外连接)
select d.deptno, d.dname,count(e.empno)
from emp e,dept d
where e.deptno(+) = d.deptno
group by d.deptno, d.dname
order by d.deptno
层次查询
- 只有一张表,单表查询,自连接为多表查询
- select level, empno, ename, mgr
- from emp
- connect by prior empno = mgr
- start with mgr is null
- order by 1
- level 为伪列,显示层次中的级别
子查询
- 可以在主查询的where, select, having, from 后放置子查询
- 不可以在group by后放置子查询
- 主查询和子查询可以不是同一张表,只要子查询返回的结果主查询可用即可
- 一般不在子查询中使用排序,但在Top-N的子查询中要排序
- 子查询一般在主查询执行前执行完成,但相关子查询例外
- 单行子查询(即只返回一条记录的查询)只能使用单行操作符,多行子查询只能使用多行操作符
多行子查询
- 返回多行,使用多行比较操作符
- in: 等于列表中的任何一个
- any:和子查询返回的任意一个值比较(min())
- all:和子查询返回的所有制比较(max())
- 查询工资比30号部门任意一个员工高的员工
- select * from emp where sal > any(select sal from emp where deptno = 30);
- 不是老板的员工,所有的叶子节点
- select * from emp where empno not in (select mgr from emp where mgr is not null);
- 找到员工中工资最高的前3名
- select rownum, empno, ename, sal
- from (select * from emp order by sal desc)
- where rownum <= 3;
- 找到员工表中薪水大于本部门平均薪水的员工
- select e.empno,e.ename,e.sal,d.avgsal
- from emp e, (select deptno, avg(sal) avgsal from emp group by deptno) d
- where e.deptno = d.deptno and e.sal > d.avgsal
相关子查询
- 将主查询中的某些值作为参数传递给子查询
- 找到员工表中薪水大于本部门平均薪水的员工
- select e.empno, e.ename,e.sal, (select avg(sal) from emp where deptno = e.deptno) avgsal
- from emp e
- where e.sal > (select avg(sal) from emp where deptno = e.deptno)
- 统计每年入职人数
select count(*) Total,
sum(decode(to_char(hiredate, 'yyyy'), '1980', 1, 0)) "1980",
sum(decode(to_char(hiredate, 'yyyy'), '1981', 1, 0)) "1981",
sum(decode(to_char(hiredate, 'yyyy'), '1982', 1, 0)) "1982",
sum(decode(to_char(hiredate, 'yyyy'), '1987', 1, 0)) "1987"
from emp;
分页
select *
from (select rownum r, e1.*
from (select * from emp order by sal) e1
where rownum <=8 )
where r >= 5;
oracle query的更多相关文章
- paip.oracle query export to insert sql
paip.oracle query export to insert sql 作者Attilax , EMAIL:1466519819@qq.com 来源:attilax的专栏 地址:http:/ ...
- Oracle query that count connections by minute with start and end times provided
数据结构类似 SQL> select * from t; B E N ----------------- ------------ ...
- Python中通过cx_oracle操作ORACLE数据库的封闭函数
哈哈,看来我的SQL自动化发布,马上就全面支持ORACLE,MYSQL,POSTGRESQL,MSSQL啦... http://blog.csdn.net/swiftshow/article/deta ...
- 老李分享: Oracle Performance Tuning Overview 翻译
老李分享: Oracle Performance Tuning Overview 翻译 poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工 ...
- 数据库隔离级别深入理解(ORACLE)
TRANSACTION_READ_UNCOMMITTED 1 这种隔离级别最低,脏读,不可重复读,幻读都会发生,我用的oracle,并没有支持这个级别,不作研究. TRANSACTION_READ_C ...
- redash oracle 数据源docker 镜像
redash 官方的docker 镜像是没有包含oracle的,需要我们自己添加,参考了一个docker 镜像进行了简单的修改 Dockerfile FROM redash/redash:7.0.0. ...
- oracle_fdw安装及使用(无法访问oracle存储过程等对象)
通过oracle_fdw可以访问oracle中的一些表和视图,也可以进行修改,尤其是给比较复杂的系统使用非常方便. (但不能使用oracle_fdw来访问oracle的存储过程.包.函数.序列等对象) ...
- sqluldr2 oracle直接导出数据为文本的小工具使用
近期客户有需求,导出某些审计数据,供审计人进行核查,只能导出成文本或excel格式的进行查看,这里我们使用sqluldr2工具进行相关数据的导出. oracle导出数据为文本格式比较麻烦,sqluld ...
- 初步认知MySQL metadata lock(MDL)
http://blog.itpub.net/26515977/viewspace-1208250/ 概述 随着5.5.3引入MDL,更多的Query被“Waiting for table metada ...
随机推荐
- Learning-Python【15】:内置函数
截止到Python版本3.6.2,一共为我们提供了68个内置函数.它们就是Python提供的直接可以拿来使用的所有函数. 这个表的顺序是按照首字母的排列顺序来的,都混乱的堆在一起.比如,oct和bin ...
- Spring-AOP环绕监听出错
Exception in thread "main" org.springframework.aop.AopInvocationException: Null return val ...
- CSS自定义样式
CSS自定义样式 1. 自定义字体 先将字体文件放到web服务器上,需要时自动下载到用户计算机上 属性:@font-face 例: @font-face{ font-family:myFont; sr ...
- IDEA去除自动检测bean是否存在
操作步骤如下图所示:
- 虹软SDK在nodejs中的集成
==虹软官网地址== http://www.arcsoft.com.cn 在官网注册账号,并且申请人脸识别激活码, 选择SDK版本和运行系统(windows/linux/android/ios) ,我 ...
- Servelet开发步骤和生命周期
Servelet开发步骤和生命周期 (1) 程序员开发程序,实现servelet的init和destroy接口 .重写servlet的 doGet.doPost.doPut.doDelete四个 ...
- Hibernate向数据库存入BLOB和CLOB类型的数据
我选用的是byte[] +@Lob 刚开始采用的java.sql.Blob,将上传的图片getBytes()后,通过Hibernate.getLobCreator(HibernateSessionFa ...
- part4:素数判别
法一: √n判别 这个的话就是暴力了吧,不过只能判别单个数是不是质数,而且很大的话会爆 //没有代码qwq(不想写 法二:埃式筛法 O(nloglogn)判别 直接代码好不啦: ],n,num; ]; ...
- vscode 快捷键
ctrl+/ 单行注释:// 若要多行注释://,先选中这些要注释的行,再按ctrl+/ shift+Alt+A 多行注释 撤销刚才的操作:Ctrl+Z 恢复刚才的操作:Ctrl+Shift+Z ...
- learning makefile VPATH