Oracle-day3:子查询、with as语句、聚合函数

一、单行子查询

/*一、单行子查询格式:select <列明表> from 表名(查询select 语句)where 列或表达式 比较运算符(SELECT 列名 FROM 表名 WHERE 条件)-- 子查询,必须要使用小括号括起来---最大值函数:max()最小值函数: min()二、 from 子查询from 后面的表不是一个具体的表,而是一个查询或者多层查询S果从1开始可以是 >= 或者 between and
*/

例题:

-- 单行子查询:是指只返回一行(或者说是,一个记录)的子查询
-- 例如:查找出与‘SMITH'在同一个部门(deptno)工作的所有职工姓名以及工资
-- 1.1、找出SMITH所在的部门号
select deptno 
from scott.emp 
where ename = 'SMITH'; -- 20
-- 1.2、根据条件查询
select ename,sal 
from scott.emp 
where deptno = 20;-- 1.3、使用子查询实现
select ename,sal 
from scott.emp
where deptno = (select deptno from scott.emp where ename = 'SMITH'
);-- 2、查找出表中在"CHICAGO地点"工作的职工的姓名,工种、工资
-- dept - 部门表
-- deptno - 部门编号 number
-- dname - 部门名字 varcha2
-- loc - 部门送在地 varchar2-- 2.1 在部门表dept中找到CHICAGO对应的部门号
select deptno from scott.dept where loc = 'CHICAGO';-- 2.2 根据2.1获得的部门号查询到数据
select ename,job,sal from scott.emp where deptno = 30;-- 2.3 子查询替换2.1和2.2
select ename,job,sal from
scott.emp
where 
deptno = (select deptno from scott.dept where loc = 'CHICAGO');-- 3、查找出工资比"SCOTT"高,并且在"NEW YORK"工作的职工的有关情况。-- 3.1 先找出SCOTT的工资
select sal from scott.emp where ename = 'SCOTT';
-- 3.2 在部门表dept中找到new YORK 的部门号
select deptno from scott.dept where loc = 'NEW YORK'; -- 10
-- 3.3 根据条件查询
select * from scott.emp
where 
sal > 3000 and deptno = 10;
-- 3.4 合并为子查询
select * from scott.emp
where 
sal > (select sal from scott.emp where ename = 'SCOTT')
and
deptno = (select deptno from scott.dept where loc = 'NEW YORK')
;-- 4、查找出工资比"SCOTT"工资高的职工的名字,工种,工资和所在的部门号,并按工资升序排序。-- 4.1 找出scott的工资
select sal from scott.emp where ename = 'SCOTT';
-- 4.2 根据条件查询
select ename,job,sal,deptno
from scott.emp
where
sal > 3000
order by sal
;
-- 4.3 子查询替换
select ename,job,sal,deptno
from  scott.emp
where
sal > (select sal from scott.empwhereename = 'SCOTT'
)
order by sal;-- 5、查找出具有最高月工资的雇员的姓名、工种和工资。
-- 5.1 先找出最高的工资是多少 max() 最大值、min()最小值
select max(sal) from scott.emp;
-- 5.2 根据条件查询
select ename,job,sal
from scott.emp
where
sal = 5000
;
-- 5.3 子查询合并
select ename,job,sal
from scott.emp
where
sal = (select max(sal) from scott.emp
)-- 6、列出与SCOTT从事相同工作的雇员
select ename 
from scott.emp
where job = (select jobfrom scott.empwhereename = 'SCOTT'
)
;
-- 7、列出某些雇员的姓名和佣金,条件是他们的薪资等于部门30中任何一个雇员的薪资
select ename,sal 
from scott.emp
where
sal in(select sal from scott.emp where deptno = 30
)
and
deptno != 30
;-- 8、列出某些雇员的姓名和佣金,条件是他们的薪资高于部门30中所有雇员的薪资
select ename,sal 
from scott.emp
where
sal > (select max(sal) from scott.empwhere deptno = 30
)
;-- 9、列出薪资水平处于第四位的雇员
/*这里涉及到一个函数:rownum:伪列 取序号 从1开始from子查询
*/
-- 9.1 对薪资表进行排序
select * from scott.emp order by sal desc;-- 9.2 使用form子查询9.1sql,并且使用rownum获取行号
select e.*,rownum r
from(select * from scott.emporder by sal desc
) e
;-- 9.2 合并子查询
select * from(select e.*,rownum rfrom (select * from scott.emporder by sal desc) e
) where r  = 4
;-- 11、不用分组函数求出薪水的最大值
select max(sal) from scott.emp;-- 子查询替换
select * from scott.emp
where sal = (select max(sal) from scott.emp
)
;-- 12、查询所有工资高于平均工资(平均工资包括所有员工)的销售人员(‘SALESMAN’)
-- avg() 获取到平均工资
-- 12.1 找出平均薪资
select avg(sal) from scott.emp;-- 12.2 合并子查询 
select * from scott.emp
where job = 'SALESMAN'
and
sal > (select avg(sal) from scott.emp)
;-- 13、查询工资最高的3名员工信息(from子查询)
-- rownum 取序列号
-- 子查询工资降序
-- 子查询的表是降序表
select e.*,rownum r 
from (select * from scott.emporder by sal desc
) e
where rownum < 4

二、with as 语句

/*三、with as 语句语法:with 别名 as (select 语句)别名 as (select 语句)...select 查询-------语句作用:可以创建一个自定义别名(作为表名)的sql临时表在后续操作,可以方便从sql中直接提取临时表进行使用
*/
-- 1、 举例:找出emp表中工资排名为6-10的记录
-- 1.1 from子查询
with a as (select * from scott.emp order by nvl(sal,0) desc),b as (select a.*,rownum r from a)select * from b where r between 6 and 10;-- 2、列出薪资水平处于第四位的员工
with a as(select * from scott.emp order by sal desc),b as(select a.*,rownum r from a)select * from b where r = 4
;-- 3、查询工资最高的3名员工信息
with a as(select * from scott.emp order by sal desc),b as(select a.*,rownum from a where rownum < 4)select * from b
;
-- 用bteween and
with a as(select * from scott.emp order by sal desc),b as(select a.*,rownum from a where rownum between 1 and 3)select * from b
;-- 4、查询工资高于编号为7782的员工工资,并且和7369员工从事相同工作的员工编号
select sal from scott.emp where empno = 7782;
select job from scott.emp where empno = 7369;
--合并子查询 -- 典型的单行子查询
select * from scott.emp where sal >(select sal from scott.emp where empno = 7782
)and job = (select job from scott.emp where empno = 7369
)
;-- 5、显示出和员工姓名中包含W的员工相同部门的员工姓名
-- 5.1 找出部门编号
select deptno from scott.emp where ename like '%W%';
-- 5.2 用部门号去查询信息,合并子查询
select ename,deptno,empno from scott.emp
where deptno = (select deptno from scott.emp where ename like '%W%'
)
;-- 6、显示比工资最高的员工参加工作时间晚的员工姓名,参加工作时间
-- 6.1 找出最高工资
select max(sal) from scott.emp;-- 6.2 通过工资找人
select hiredate from scott.emp where sal = (select max(sal) from scott.emp
)
;-- 6.3 通过找到的人的时间去获取到最晚的那个人
select ename,empno,hiredate,sal from scott.emp
where hiredate >(select hiredate from scott.empwhere sal = (select max(sal) from scott.emp)
)
;-- 7、查询入职日期最早的前五名员工姓名,入职日期,并显示序号
-- 7.1、时间升序
select * from scott.emp order by hiredate;-- 7.2、通过时间升序和rownum查询
select ename,hiredate,rownum 
from (select * from scott.emp order by hiredate)
--where rownum < 6     
where rownum between 1 and 5   
;-- 8、查询工作在HICAGO并且入职日期最早的两名员工姓名,入职日期
-- 8.1 要获取到dept表的部门号
select deptno from scott.dept where loc = 'CHICAGO';-- 8.2 从dept的部门号去查询emp表中的部门号获取到员工信息
select ename,hiredate from scott.emp
where deptno = (select deptno from scott.dept where loc = 'CHICAGO'
)
;-- 8.3 获取到行号,和表信息
select e.*,rownum from (select ename,hiredate from scott.empwhere deptno = (select deptno from scott.dept where loc = 'CHICAGO')
) e where rownum < 3
;-- 8.4 使用 with as 编写
witha as (select * from scott.emp where deptno = (select deptno from scott.dept where loc = 'CHICAGO') order by hiredate)select a.*,rownum  from a where rownum between 1 and 2
;

三、聚合函数


/*----------------四、分组/聚合函数 ------------------聚合/统计函数:在某个结果集中计算count(字段名或者列名):计算指定字段或列为 非空 的行数count(*):计算表中的全部行数,包含 重复行 和 空行avg(字段名):计算指定字段(非空)的平均值min(字段名):计算指定字段的最小值max(字段名):计算指定字段的最大值sum(字段名):计算指定字段(非空)的总和------count()统计数据,去除重复数据关键字:distinctcount(distinct 列)
*/
-- 1、相关的函数举例
select 
count(*),
count(empno),
count(comm)
from scott.emp
; -- 返回回来的是统计出来的数量num-- 2、计算emp表中公司职工的最低工资、最高工资、平均工资、有奖金的人(奖金不为空)、总工资的综合
select 
min(sal), -- 最低工资
max(sal), -- 最高工资
avg(sal), -- 平均工资
count(*), -- 表中的行总数
count(comm), -- 有奖金的人
sum(sal) -- 总工资
from scott.emp;-- 3、计算emp表中公司职工的总人数及工种数
select count(*) zs,count(empno) zs1,count(job) from scott.emp;
-- job 去重
select count(*) zs,count(empno) zs1,count(distinct job) from scott.emp;-- 4、计算全部销售员的年平均报酬(平均工资 * 12 + 平均奖金 *12 )
-- 4.1 找出销售员
select * from emp where job = 'SALESMAN'; -- 4.2 销售员的平均工资和平均奖金
select avg(sal),avg(comm) from scott.emp where job = 'SALESMAN'; -- 4.3 对平均的值进行计算
select avg(sal*12),avg(comm*12) from scott.emp where job = 'SALESMAN'; -- 5、统计20号部门人数和工资总和
-- 5.1 查到部门为20的员工
select * from scott.emp where deptno = 20;
-- 5.2 form查询,去统计人数和工资总和
select count(*),count(empno),sum(sal) from scott.emp where deptno = 20;-- 6、统计每个部门人数和工资总和
select count(*),count(empno),sum(sal) from scott.emp where deptno = 20;select count(*),count(empno),sum(sal) from scott.emp where deptno = 30;select deptno,count(*),count(empno),sum(sal) from scott.emp group by deptno;

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

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

相关文章

ChatGPT Prompting开发实战(二)

一、基于LangChain源码react来解析prompt engineering 在LangChain源码中一个特别重要的部分就是react&#xff0c;它的基本概念是&#xff0c;LLM在推理时会产生很多中间步骤而不是直接产生结果&#xff0c;这些中间步骤可以被用来与外界进行交互&#xff0c;然后产生new con…

Oracle ASM (Automatic Storage Management)

[TOC](Oracle ASM (Automatic Storage Management)) Oracle ASM (Automatic Storage Management) 是 Oracle 的一个磁盘管理和文件系统服务&#xff0c;用于简化数据库文件的分布。 在使用 ASM 管理磁盘时&#xff0c;如果想要增加存储空间&#xff0c;您可以向现有的磁盘组添加…

IdentityServer密码长度超长会导致跳转到登录页

应用系统项目的安全要求越来越高&#xff0c;基本都是采取https等加密证书传输&#xff0c;无法使用https的&#xff0c;也是要求不能明文传输内容&#xff0c;因此做一些等保要求&#xff0c;密码需要加密后才能传输给服务端&#xff0c;所以前端会采取一些密码手段&#xff0…

block层:7. 请求下发

blk_dispatch 源码基于5.10 1. blk_mq_sched_dispatch_requests void blk_mq_sched_dispatch_requests(struct blk_mq_hw_ctx *hctx) {// 队列struct request_queue *q hctx->queue;// 队列已停止或者被暂停if (unlikely(blk_mq_hctx_stopped(hctx) || blk_queue_quiesc…

【Android Framework系列】第12章 RecycleView相关原理及四级缓存策略分析

1 RecyclerView简介 RecyclerView是一款非常强大的widget&#xff0c;它可以帮助您灵活地显示列表数据。当我开始学习 RecyclerView的时候&#xff0c;我发现对于复杂的列表界面有很多资源可以参考&#xff0c;但是对于简单的列表展现就鲜有可参考的资源了。虽然RecyclerView的…

『赠书活动 | 第十八期』《深入浅出SSD:固态存储核心技术、原理与实战》

&#x1f497;wei_shuo的个人主页 &#x1f4ab;wei_shuo的学习社区 &#x1f310;Hello World &#xff01; 『赠书活动 &#xff5c; 第十八期』 本期书籍&#xff1a;《深入浅出SSD&#xff1a;固态存储核心技术、原理与实战》 赠书规则&#xff1a;评论区&#xff1a;点赞&…

BPM在企业扮演什么角色?一文秒懂!

如果将企业各职能部门比作各司其职的器官组织&#xff0c;那工作流程就是将其串联为整体&#xff0c;指挥其发挥作用的中枢神经网络&#xff0c;流程作为企业管理意志的延伸&#xff0c;对企业运营管理的影响至关重要。 但随着企业IT建设的多元化&#xff0c;系统能力边界扩展&…

Java 线程池

线程池 Java 线程池是一种多线程处理技术&#xff0c;它可以在程序中预先创建一定数量的线程&#xff0c;将任务提交到线程池中&#xff0c;线程池会自动调度线程执行任务。通过使用线程池&#xff0c;可以避免反复创建和销毁线程的开销&#xff0c;提高程序性能&#xff0c;同…

monorepo更新组件报错,提示“无法加载文件 C:\Program Files\nodejs\pnpm.ps1,因为在此系统上禁止运行脚本”

解决方法&#xff1a; 第一步&#xff1a;管理员身份运行 window.powershell&#xff0c; win x打开powerShell命令框&#xff0c;进入到对应项目路径。 第二步&#xff1a;执行&#xff1a;get-ExecutionPolicy&#xff0c;显示Restricted&#xff0c;表示状态是禁止的; 第…

面试前的准备:程序员应该如何备战面试

&#x1f337;&#x1f341; 博主猫头虎 带您 Go to New World.✨&#x1f341; &#x1f984; 博客首页——猫头虎的博客&#x1f390; &#x1f433;《面试题大全专栏》 文章图文并茂&#x1f995;生动形象&#x1f996;简单易学&#xff01;欢迎大家来踩踩~&#x1f33a; &a…

盲盒电商小程序

一、准备阶段 在开始制作盲盒小程序前&#xff0c;你需要在乔拓云平台上创建一个账号&#xff0c;并登录到后台管理页面。在后台管理页面&#xff0c;你可以找到商城管理模块&#xff0c;点击进入商城编辑制作页面。 二、小程序商城模板选择与编辑 1.在商城编辑制作页面&#x…

2023.08.27 学习周报

文章目录 摘要文献阅读1.题目2.重点3.引言4.方法5.实验结果6.结论 深度学习Majorization-Minimization算法1.基本思想2.要求3.示意图 总结 摘要 This week, I read a computer science on the prediction of atmospheric pollutants in urban environments based on coupled d…

AUTOSAR汽车电子系统架构标准

AUTOSAR 目录 AUTOSAR RTE SWC和BSW SWC访问代码实现 ARXML&#xff08;AUTOSAR XML&#xff09; Interface Client-Server接口代码实现 AutoSAR OS Application AUTOSAR&#xff08;Automotive Open System Architecture&#xff09;正式发布日期是2003年&#xff0c;…

Linux系统编程:基础知识入门学习笔记汇总

Linux基础shell编程——>Linux 系统编程——>&#xff08;计算机网络&#xff09;——>Linux 网络编程 来源&#xff1a;黑马程序员-Linux系统编程 45小时 评价 这个老师好像讲了很多课程&#xff0c;都还不错我由于赶时间之前学过Linux的Shell编程和Linux的网络编程&…

swagger 2.10.5 整合 spring boot

参考&#xff1a; http://springfox.github.io/springfox/ https://github.com/springfox/springfox http://springfox.github.io/springfox/docs/current/ https://github.com/springfox/springfox-demos https://github.com/springfox/springfox-demos/tree/2.9.2 https://gi…

pandas读取excel,再写入excel

需求是这样的&#xff0c;从一个表读取数据&#xff0c;然后每次执行创建一个新表将值写入 读取这个表 写入到这个表 分别对应的是e、h列数据&#xff0c;代码如下&#xff1a; import pandas as pd import openpyxl import datetime dfpd.read_excel(rC:\Users\admin\Deskt…

设计模式-职责链模式

文章目录 职责链模式模式概述主要角色适用场景实现步骤优点注意事项 定义职责链结构示例总结 职责链模式 职责链模式是一种行为设计模式&#xff0c;它可以将请求的发送者和请求的处理者解耦&#xff0c;并按照预定义的顺序处理请求。职责链模式常用于需要逐级审批或转交处理的…

【电路设计】220V AC转低压DC电路概述

前言 最近因项目需要,电路板上要加上一个交流220V转低压直流,比如12V或者5V这种。一般来说,比较常见也比较简单的做法是使用一个变压器将220V AC进行降压,比如降到22V AC,但是很遗憾的是,支持220V的变压器一般体积很大,而板子留给电源部分的面积又非常有限,所以不得不研…

OpenHarmony组件复用示例

本文转载自《#2023盲盒码# OpenHarmony组件复用示例》&#xff0c;作者zhushangyuan_ 摘要&#xff1a;在开发应用时&#xff0c;有些场景下的自定义组件具有相同的组件布局结构&#xff0c;仅有状态变量等承载数据的差异。这样的组件缓存起来&#xff0c;需要使用到该组件时直…

C++中的运算符总结(7):复合赋值运算符

C中的运算符总结&#xff08;7&#xff09;&#xff1a;复合赋值运算符 复合赋值运算符将运算结果赋给左边的操作数。 请看下面的代码&#xff1a; int num1 22; int num2 5; num1 num2; // num1 contains 27 after the operation其中最后一行代码与下面的代码等效&#…