Oracle子查詢之高級子查詢

来源:https://www.cnblogs.com/Clonglegs/archive/2018/08/15/9479955.html
-Advertisement-
Play Games

Oracle 高級子查詢 高級子查詢相對於簡單子查詢來說,返回的數據行不再是一列,而是多列數據。 1,多列子查詢 主查詢與子查詢返回的多個列進行比較 查詢與141號或174號員工的manager_id和department_id相同的其他員工的employee_id, manager_id, dep ...


Oracle 高級子查詢

  高級子查詢相對於簡單子查詢來說,返回的數據行不再是一列,而是多列數據。

1,多列子查詢

主查詢與子查詢返回的多個列進行比較

查詢與141號或174號員工的manager_id和department_id相同的其他員工的employee_id, manager_id, department_id

select employee_id, manager_id, department_id

from employees

where (manager_id,department_id) in ( --由於內查詢返回兩列,所以此處也必須使用兩列來進行對應,並且列的順序一致

select manager_id,department_id --內查詢返回2列

from employees

where employee_id in (141,174)

)

and employee_id not in (141,174);

 

2,FROM子句中使用子查詢

將子查詢的結果集,作為一個虛表,然後從這個虛表中查詢數據行

 

返回比本部門平均工資高的員工的last_name, department_id, salary及平均工資

select last_name, e.department_id, salary,avgsal

from employees e,(select department_id,round(avg(salary)) avgsal

from employees

group by department_id) avg_sal

where e.department_id = avg_sal.department_id

and e.salary > avg_sal.avgsal

order by e.department_id;

 

3,單列子查詢的其他應用

在主查詢的select列表中使用

 

問題:顯式員工的employee_id,last_name和location。其中,若員工department_id與location_id為1800的department_id相同,

則location為’Canada’,其餘則為’USA’。

 

select employee_id,last_name,department_id,

(case when department_id = (select department_id

from departments

where location_id = 1800

)

then 'USA'

else 'Canada' end) location

from employees

order by department_id;

select employee_id,last_name,department_id,

(case department_id when (select department_id

from departments

where location_id = 1800

)

then 'USA'

else 'Canada' end) location

from employees

order by department_id;

select employee_id,last_name,department_id,

decode(department_id,(select department_id

from departments

where location_id = 1800

),'USA',

'Canada') location

from employees

order by department_id;

 

4,相關子查詢,

子查詢語句中使用了主查詢語句中的表中的數據(這個數據不一定在主查詢的select語句中)

相關子查詢按照一行接一行的順序執行,即子查詢取主查詢表中的每一行數據值,主查詢的每一行都執行一次子查詢。

使用相關子查詢,要考慮是否必須使用、是否合理,否則在不需要使用相關子查詢的情況下就能輕易得到查詢結果,使用相關子查詢反而會使查詢的效率下降。

 

用法:

get:從主查詢所用的表中獲取候選列

execute:子查詢使用主查詢的數據,併進行相關的篩選

use:如果滿足內查詢的條件則返回值

 

例1:查詢員工的employee_id,last_name,要求按照員工的department_name排序

select employee_id,last_name,e.department_id,department_name

from employees e,departments dd

where e.department_id = dd.department_id(+) --該查詢返回employees表中的所有行,沒返回一行,都會取一個employee_id到子查詢中

order by (select department_name

from departments d

where e.department_id = d.department_id); --子查詢根據主查詢返回的employee_id,在departments表中進行查找,有則返回數據。

desc;

 

例2:查詢員工中工資大於本部門平均工資的員工的last_name,salary,department_id和本部門的平均工資

select last_name,salary,e1.department_id,ss.avgsal

from employees e1,(select department_id,round(avg(salary)) avgsal

from employees

group by department_id) ss --該from字句同前例

where e1.department_id = ss.department_id

and salary > (

select round(avg(salary))

from employees e2

where e1.department_id = e2.department_id --將外查詢中的department_id,查找該處的department_id,並將所有的返回結果分組

group by e2.department_id)

order by e1.department_id;

例3:若employees表中employee_id與job_history表中employee_id相同且job_history表中employee_id的數目不小於2,

輸出employees中這些相同id的員工的employee_id,last_name和其job_id

select e1.employee_id ,last_name,e1.job_id

from employees e1

where (select count(job_id)

from job_history j1

where e1.employee_id = j1.employee_id) >= 2

 

5,exists

EXISTS 操作符檢查在子查詢中是否存在滿足條件的行

如果在子查詢中存在滿足條件的行:

不在子查詢中繼續查找

條件返回 TRUE

如果在子查詢中不存在滿足條件的行:

條件返回 FALSE

繼續在子查詢中查找

 

查詢公司管理者的employee_id,last_name,job_id,department_id信息

子查詢

select employee_id,last_name,job_id,department_id

from employees e1

where e1.employee_id in (

select distinct(manager_id)

from employees);

自連接

select distinct e1.employee_id,e1.last_name,e1.job_id,e1.department_id

from employees e1,employees e2

where e1.employee_id = e2.manager_id;

相關子查詢

select employee_id,last_name,job_id,department_id

from employees e1

where e1.employee_id in (

select manager_id

from employees e2

where e1.employee_id = e2.manager_id);

使用exists相關子查詢

select employee_id,last_name,job_id,department_id

from employees e1

where exists (

select 'A' --根據e1表中的每個 employee_id在e2中查找 manager_id,如果找到,子查詢返回true,主查詢返回該數據行

from employees e2

where e1.employee_id = e2.manager_id);

 

6.not exists

查詢departments表中,不存在於employees表中的部門的department_id和department_name

select d.department_id,d.department_name

from departments d

where not exists ( --not exists 返回子查詢中false的結果

select 'X' --根據e1表中的每個 employee_id在e2中查找 manager_id,如果找到,子查詢返回true,即該部門在departments中存在,也有員工

from employees e

where d.department_id = e.department_id);

 

7.相關更新

使用相關子查詢依據一個表中的數據更新另一個表的數據

例:向employees中添加一列 department_name ,並更具department_id填充

update employees e1

set department_name = (

select department_name

from departments

where e1.department_id = department_id);

 

8,相關刪除

使用相關子查詢依據一個表中的數據刪除另一個表的數據

例:刪除表employees中,其與emp_history表皆有的數據

delete from employees e1

where employee_id in (

select employee_id

from job_history

where e1.employee_id = employee_id);

 

9,使用 WITH 子句

可以避免在 SELECT 語句中重覆書寫相同的語句塊

WITH 子句將該子句中的語句塊執行一次並存儲到用戶的臨時表空間中

使用 WITH 子句可以提高查詢效率

 

例,查詢公司中各部門的總工資,大於公司中各部門的平均總工資,的部門信息

使用普通方法:使用普通方法,彙總後的語句冗長不易理解

--各部門總工資

select department_id,sum(salary) sum_sal from employees group by department_id;

--各部門的平均總工資

select sum(to_sal.sum_sal)/count(*) to_avg_sal

from (select department_id,sum(salary) sum_sal

   from employees group by department_id) to_sal;

--根據前面兩項,查詢最終結果 

select to_sal.department_id,sum_sal

from (select department_id,sum(salary) sum_sal from employees group by department_id) to_sal,

   (select sum(to_sal.sum_sal)/count(*) to_avg_sal from (select department_id,sum(salary) sum_sal from employees group by department_id) to_sal) avg_sal

where to_sal.sum_sal > avg_sal.to_avg_sal;

使用with字句

with to_sal as --各部門總工資

(select department_id,sum(salary) sum_sal from employees group by department_id),

avg_sal as --各部門的平均總工資

(select sum(to_sal.sum_sal)/count(*) to_avg_sal from to_sal)

select department_id,sum_sal

from to_sal

where to_sal.sum_sal > (

select avg_sal.to_avg_sal

from avg_sal);

 

with

to_sal as

(select department_id,sum(salary) sum_sal from employees group by department_id),

avg_sal as

(select sum(to_sal.sum_sal)/count(*) to_avg_sal from to_sal)

select department_id,sum_sal,to_avg_sal

from to_sal,avg_sal

where to_sal.sum_sal > avg_sal.to_avg_sal;

 

 

 

 註明:本博文系學習尚矽谷網易雲課堂教學課程總結輸出。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 本節介紹PL SQL的基本內容 本節所舉示例數據來源oracle用戶scott下的emp表和dept表,數據如下: 一、plsql簡介: 1、概念:procedural language,過程化sql語言,是面向過程的語言,在普通sql的基礎上增加了編程語言的特點。PL/SQL的基本單元是塊。 2、 ...
  • Flink+Kafka整合實例 1.使用工具Intellig IDEA新建一個maven項目,為項目命名為kafka01。 2.我的pom.xml文件配置如下。 3.在項目的目錄/src/main/java在創建兩個Java類,分別命名為KafkaDemo和CustomWatermarkEmitte ...
  • 所有萌生入行的想法與想要學習Java的同學的初衷是一樣的。崗位非常火,就業薪資比較高,,前景非常可觀。基本都是這個原因而嚮往大數據,但是對大數據卻不甚瞭解。 如果你想學習,那麼首先你需要學會編程,其次你需要掌握數學,統計學的知識,最後融合應用,就可以想在數據方向發展,籠統來說,就是這樣的。但是僅僅這 ...
  • 1 下載並安裝MySQL官方的 Yum Repository //下載安裝Yum Repository wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm //yum安裝 yum -y ins ...
  • MongoDB 一、下載MongoDB資料庫 1、進入MongoDB官網進行下載,網址:https://www.mongodb.com/。 2、下載完成後可進行安裝,安裝後,並有了MongoDB服務。 二、配置環境變數 1、在環境變數中的系統變數新建一個名為MONGODB_HOME變數名,變數值為M ...
  • 具體方法如下 一:update 表2 set (要插入的列名)= select 表1.某一列 from 表1 left jion 表2 on 表1和表2的關聯 where ..... 二:update 表1 set 表1.列=表2.列 from 表2 where 表2.id=表1.id 三:upda ...
  • Sqlserver類型 Oracle類型 binary RAW(50) bit NUMBER(2) char CHAR(10) datetime DATE decimal NUMBER(18) float BINARY_DOUBLE image BLOB int NUMBER(10) money N ...
  • 資料庫版本:9.3.23(Windows xp系統) 步驟: 1、需要修改資料庫安裝目錄下的pg_hba.conf文件 修改成: 2、並使用psql執行pg_ctl reload重新載入配置文件 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...