Oracle子查詢之簡單子查詢

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

Oracle 簡單子查詢 顧名思義,簡單子查詢是嵌套在 SQL 語句中的另一個SELECT 語句,並且子查詢只返回一列數據 1,單行子查詢: 子查詢 (內查詢) 在主查詢之前一次執行完成。子查詢的結果被主查詢(外查詢)使用 ,單行子查詢,一個子查詢語句只返回一行結果,不能返回空值 可以使用>,<,< ...


Oracle 簡單子查詢

顧名思義,簡單子查詢是嵌套在 SQL 語句中的另一個SELECT 語句,並且子查詢只返回一列數據

1,單行子查詢:

子查詢 (內查詢) 在主查詢之前一次執行完成。子查詢的結果被主查詢(外查詢)使用 ,單行子查詢,一個子查詢語句只返回一行結果,不能返回空值

可以使用>,<,<>(!=),=,<=,>=

select select_list from table

where expr operation --operation為條件語句表達式,

(select select_list

from table

where expr);

例1:查詢工資比Abel高的人

select first_name||' '||last_name name,salary

from employees

where salary >

(select salary from employees --該子查詢只返回salary一個值

where lower(last_name) = 'abel');

NAME SALARY

---------------------- ----------

Steven King 24000

Neena Kochhar 17000

Lex De Haan 17000

Nancy Greenberg 12000

John Russell 14000

Karen Partners 13500

Alberto Errazuriz 12000

Lisa Ozer 11500

Michael Hartstein 13000

Shelley Higgins 12000

例2:查詢最低工資大於50號部門最低工資的部門id和其最低工資

select nvl(department_id,1) department_id,min(salary)

from employees

group by department_id

having min(salary) >

(select min(salary)

from employees

where department_id = 50);

DEPARTMENT_ID MIN(SALARY)

------------- -----------

100 6900

30 2500

1 7000

90 17000

20 6000

70 10000

110 8300

80 6100

40 6500

60 4200

10 4400

例3,單行子查詢中使用單行函數

顯式員工的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;

2,多行子查詢:

子查詢返回多行值,可使用多行比較符:in(not in)(等於/不等於返回值的任意一個),any(和返回值的某一個值比較),all(和返回值的所有值比較)

例1:查詢job_id不為為‘IT_PROG’,並且工資比任意一個job_id為‘IT_PROG’的人都低的員工信息;

或者工資比所有job_id為‘IT_PROG’的人都低的員工信息;

或者工資等於任意一個job_id為‘IT_PROG’的人都低的員工信息;

SQL> select employee_id,first_name||' '||last_name name,job_id,salary

from employees

where salary < any(

select salary

from employees

where job_id = 'IT_PROG')

and job_id <> 'IT_PROG';

 

EMPLOYEE_ID NAME JOB_ID SALARY

----------- --------------------- ---------- ----------

132 TJ Olson ST_CLERK 2100

136 Hazel Philtanker ST_CLERK 2200

128 Steven Markle ST_CLERK 2200

135 Ki Gee ST_CLERK 2400

127 James Landry ST_CLERK 2400

191 Randall Perkins SH_CLERK 2500

182 Martha Sullivan SH_CLERK 2500

144 Peter Vargas ST_CLERK 2500

...(省略部分)

SQL> select employee_id,first_name||' '||last_name name,job_id,salary

from employees

where salary < all(

select salary

from employees

where job_id = 'IT_PROG')

and job_id <> 'IT_PROG';

 

EMPLOYEE_ID NAME JOB_ID SALARY

----------- ----------------- -------------------- ----------

185 Alexis Bull SH_CLERK 4100

192 Sarah Bell SH_CLERK 4000

193 Britney Everett SH_CLERK 3900

188 Kelly Chung SH_CLERK 3800

137 Renske Ladwig ST_CLERK 3600

189 Jennifer Dilly SH_CLERK 3600

141 Trenna Rajs ST_CLERK 3500

186 Julia Dellinger SH_CLERK 3400

133 Jason Mallin ST_CLERK 3300

...(省略部分)

SQL> select employee_id,first_name||' '||last_name name,job_id,salary

from employees

where salary in (

select salary

from employees

where job_id = 'IT_PROG')

and job_id <> 'IT_PROG';

 

EMPLOYEE_ID NAME JOB_ID SALARY

----------- -------------------- -------------------- ----------

158 Allan McEwen SA_REP 9000

152 Peter Hall SA_REP 9000

109 Daniel Faviet FI_ACCOUNT 9000

202 Pat Fay MK_REP 6000

184 Nandita Sarchand SH_CLERK 4200

更多例題:

1. 查詢工資最低的員工信息: last_name, salary

select last_name,salary

from employees

where salary = (

select min(salary)

from employees);

 

2. 查詢平均工資最低的部門信息

SQL> select d.*,city

from departments d,locations ll

where ll.location_id = d.location_id

and d.department_id = (

select department_id

from employees

group by department_id

having avg(salary) = ( select min(avg(salary))

from employees

group by department_id));

 

3*. 查詢平均工資最低的部門信息和該部門的平均工資

select d.*,

(select min(avg(salary)) from employees group by department_id) avg_salary,

city

from departments d,locations ll

where ll.location_id = d.location_id

and d.department_id = (

select department_id

from employees

group by department_id

having avg(salary) = ( select min(avg(salary))

from employees

group by department_id));

 

4. 查詢平均工資最高的 job 信息

select * from jobs

where job_id in (

select job_id from employees

group by job_id

having avg(salary) = (

select max(avg(salary))

from employees

group by job_id));

 

5. 查詢平均工資高於公司平均工資的部門有哪些?

select department_id from employees

group by department_id

having avg(salary) >

(select avg(salary) from employees);

 

6. 查詢出公司中所有 manager 的詳細信息.

select * from employees

where employee_id in (

select distinct(manager_id)

from employees);

 

7. 查詢各個部門中的最高工資,找出其中中最低的最高工資是那個部門,並查詢其最低工資是多少

select department_id,min(salary)

from employees

where department_id in (

select department_id

from employees

group by department_id

having max(salary) in (

select min(max(salary))

from employees

group by department_id))

group by department_id;

 

 

8. 查詢平均工資最高的部門的 manager 的詳細信息: last_name, department_id, email, salary

select last_name,department_id,email,salary --根據manager_id查詢相關信息

from employees

where employee_id in (

select distinct(manager_id) --根據平均工資最高的部門ID,查詢這個部門的有哪些manager

from employees

where department_id = (

select department_id --查詢平均工資等於最高的部門的ID

from employees

group by department_id

having avg(salary) = (

select max(avg(salary)) --查詢平均工資最高的

from employees

group by department_id)));

 

9. 查詢 1999 年來公司的人所有員工的最高工資的那個員工的信息.

select *

from employees

where salary in (

select max(salary)

from employees

where employee_id in (

select employee_id

from employees

where to_char(hire_date,'YYYY') = '1999'))

and to_char(hire_date,'YYYY') = '1999';

 

本博文系學習尚矽谷網易雲課堂課程整理而成。


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

-Advertisement-
Play Games
更多相關文章
  • #!/bin/bash#Auth:Darius#自動化安裝dhcp服務#"$1"為測試IP,用來查看IP段是否能通eno=`ifconfig|awk '{print $1}'|head -1|awk -F ":" '{print $1}'`file=/etc/sysconfig/network-sc ...
  • 按網上版本,沒能運行成功,主要是環境變數里路徑設置錯誤,紅字為更改的部分 blatSrc35.zip下載地址:http://users.soe.ucsc.edu/~kent/src/ 對於下載好的源代碼安裝包blatSrc35.zip,需進行編譯,安裝過程如下: 1.用unzip blatSrc35 ...
  • 在有些需求當中我們需要抓取欄位並且填充到excel表格裡面,最後將excel表格轉換成pdf格式進行輸出,我第一次接觸這個需求時,碰到幾個比較棘手的問題,現在一一列出並且提供解決方案。 1:excel轉pdf出現亂碼: 第一次excel轉pdf是成功的,第二次開始後面皆是亂碼,是因為我的pdf轉ex ...
  • #!/bin/bash#Auth:Darius#CentOS_7配置實驗環境eno=`ifconfig|awk '{print $1}'|head -1|awk -F ":" '{print $1}'`file=/etc/sysconfig/network-scripts/ifcfg-$enodir ...
  • 問題: Windows Storage Server 2012 R2 發佈NAS服務,客戶創建用戶和組時報錯,事件查看器系統日誌下報錯Event ID 12288,內容如下: SAM failed to write changes to the database. This is most like ...
  • 1、數據備份:a、mdf是數據文件,資料庫系統的可實時操作/讀取的數據文件,也可作為物理備份文件使用。分離--附加;b、ldf 是日誌文件,用於存儲資料庫的邏輯日誌信息。c、bak是備份文件,是資料庫邏輯備份和增量備份的輸出格式。BAK文件還原的數據更加全面 備份--還原 2、資料庫自動定時備份;刪 ...
  • 占座 ...
  • [20180814]慎用查看表壓縮率腳本.txt--//最近看exadata方面書籍,書中提供1個腳本,查看某些表採用那些壓縮模式壓縮比能達到多少.--//通過調用DBMS_COMPRESSION.get_compression_ratio確定壓縮比.例子如下:--//測試版本11.2.0.4.de ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...