oracle——學習之路(select檢索)

来源:https://www.cnblogs.com/chlme-wyn-001/archive/2019/07/04/11128939.html
-Advertisement-
Play Games

select語法: select [distinct|all] 列名 from 表名 [where] [group by] [having] [order by] ps:[] 表示可以省略 舉幾個慄子: select * from emp; ps:* 表示所有欄位即把要查詢的表的所有欄位都顯示出來, ...


select語法:

 

select   [distinct|all]    列名     from   表名     [where]   [group by]   [having]    [order by]                ps:[] 表示可以省略

 

 

舉幾個慄子:

select * from emp;                                                                                                                         ps:* 表示所有欄位即把要查詢的表的所有欄位都顯示出來,並不建議使用因為網路消耗大,效率也不高

 

select empno from emp;                                                                                                               ps:篩選指定欄位,可以篩選多個,欄位之間用逗號隔開

 

select empno,ename,job from emp;                                                                                               ps:篩選指定欄位,可以篩選多個,欄位之間用逗號隔開

 

select job from emp;

 

 

select distinct(job) from emp;                                                                                                            ps:all是預設的即有重覆也會顯示,distinct消除重覆

 

select * from emp where comm is not null;                                                                                    ps:null表示空值

 

select job,count(*),sum(sal) from emp group by job;                                                                           ps:count() sum()為聚合函數後面會講

 

select sum(sal), count(*), (sum(sal)/count(*)) from emp group by job having (sum(sal)/count(*))>2000;            ps:having 要與group by 連用 having 要放在group by後面,group by 可以單獨使用

 

select * from emp order by empno desc;                                                                                        ps:desc是按降序排序,asc是按升序排序,預設是asc

 

select empno as 雇員編號 from emp order by 雇員編號;                                                               ps:雇員編號是別名,別名中英文不限,當然你要用阿拉伯語,德語什麼的只要可以打出來識別也沒問題,as可以省略也可以寫,都是一樣的道理,order by後應該使用別名,只有order by 可以這樣,having後面都不可以

 

select * from emp order by empno desc ,job;                                                                                  ps:可以根據兩個欄位進行排序,先按照empno進行降序排序,如果相等對job進行升序排序

 

select job,sum(sal) from emp group by job ;               ps:group by 後的欄位必須在查詢欄位出現,查詢欄位還可以出現聚合函數

 

select job,sum(sal)*2 from emp group by job ;                                                    ps:不表示資料庫的數據被改變只表示顯示的結果

 

select ename ,sal from emp where sal not between 4000 and 5000;                                             ps:between 4000  and 5000   相當於 >=4000 and <=5000

 

select job , ename from emp where sal in(800,1600,1500);                                             ps:在集合中選取符合條件的

 select ename from emp where ename like '__A%';                                                          ps:模糊查詢,_代表匹配一個字元,%代表匹配至少0 個字元

 

 select ename from emp where ename like '%A%' or ename like  '%E%';                                               

 

 

使用where來進行篩選時,常用的操作符:< 小於  >大於   = 等於  !=不等於  <>不等於  <=小於等於  >=大於等於

 having是對group分的組進行篩選,不同於where     group要分的組是where篩選過後的

 

子查詢:

 

select empno, ename from emp where empno in (select empno from emp where comm is not null);

 

 

any    和<any     <=any表示小於或小於等於列表中最大值,與  in配合使用   和> any    >=any表示大於或大於等於列表中的最小值     =any 相當於in

 

all     和<all     <=all表示小於或小於等於列表中的最小值,與in配合使用    和>all     >=all表示大於或大於等於列表中的最大值     <>all相當於 not in

 

舉幾個慄子:

select sal from emp where comm is not null;(1)

select * from emp where sal =any(select sal from emp where comm is not null);(2)

 select * from emp where sal in(select sal from emp where comm is not null);(3)

 

select * from emp where sal <any(select sal from emp where comm is not null);

 

 select * from emp where sal <=any(select sal from emp where comm is not null);

 

select * from emp where sal >any(select sal from emp where comm is not null);

 

select * from emp where sal >=any(select sal from emp where comm is not null);

select * from emp where sal <>all(select sal from emp where comm is not null);

 

select * from emp where sal >all(select sal from emp where comm is not null);

select * from emp where sal >=all(select sal from emp where comm is not null);

select * from emp where sal <all(select sal from emp where comm is not null);

select * from emp where sal <=all(select sal from emp where comm is not null);

註意看這幾句的關係

 

連接查詢:

select * from emp, dept;           產生笛卡兒積

 

內連接:等值連接、不等值連接

等值連接:連接中使用“=”(等號) 連接兩個條件列表

select * from emp e, dept d where e.deptno=d.deptno;      select * from emp e inner join dept d on e.deptno=d.deptno;    //功能相等    ps:inner可以省略,系統自動識別為內連接

不等值連接:連接時使用<、 > 、>=、  <=、 between ……and ……、in等連接兩個條件列表

自連接:把自身表的一個引用作為另一個表來處理

select e.empno 雇員編號, e.ename 雇員姓名,m.empno 領導編號 from emp e, emp m where e.mgr=m.empno;

外連接:左外連接、右外連接、全外連接

左外連接:返回結果不僅僅符合連接條件的行記錄,左表全部記錄都會包含,右表不滿足的用NULL填充

右外連接:返回結果不僅僅符合連接條件的行記錄,右表全部記錄都會包含,左表不滿足的用NULL填充

全外連接:無論是否成功匹配,左右表記錄都返回,不滿足用NULL填充

 

oracle使用外連接有一種特殊的方法,用(+)表示外連接,放在非主表的一方

 

舉幾個慄子:

dept是左表,採用左外連接

select d.deptno, d.dname,a.empno, a.ename,a.job,a.sal   from dept d ,(select empno, ename, job ,sal ,deptno from emp where comm is null) a where d.deptno=a.deptno(+);

select d.deptno, d.dname,a.empno, a.ename,a.job,a.sal   from dept d left join (select empno, ename, job ,sal ,deptno from emp where comm is null) a on d.deptno=a.deptno;

以上兩個查詢語句相等

採用右外連接:

select d.deptno, d.dname,a.empno, a.ename,a.job,a.sal   from dept d right join (select empno, ename, job ,sal ,deptno from emp where comm is null) a on d.deptno=a.deptno;

select d.deptno, d.dname,a.empno, a.ename,a.job,a.sal   from dept d , (select empno, ename, job ,sal ,deptno from emp where comm is null) a where d.deptno(+)=a.deptno;

以上兩個查詢語句相等

 採用全外連接:

 select d.deptno, d.dname,a.empno, a.ename,a.job,a.sal   from dept d full join (select empno, ename, job ,sal ,deptno from emp where comm is null) a on d.deptno=a.deptno;

 

 

 

 

 

 

獻給和我一樣的小白,有關查詢還有很多知識點,這裡只寫了常用的,如有錯誤請指出,謝謝!

 


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

-Advertisement-
Play Games
更多相關文章
  • 用三台虛擬機搭建Hadoop全分佈集群 所有的軟體都裝在/home/software下 虛擬機系統:centos6.5 jdk版本:1.8.0_181 zookeeper版本:3.4.7 hadoop版本:2.7.1 1.安裝jdk 準備好免安裝壓縮包放在/home/software下 配置環境變數 ...
  • 寫在前面 在做項目的過程中。我發現有許多地方有用到游標的方式去實現功能效果的。所以,整理了有關常用的實現游標的方式。 一、什麼是游標 維基百科中事這樣定義游標的。游標是處理結果集的一種機制 ,而結果集就是select查詢返回的所有行數據的集合。 對於我而言,用通俗的話來講,就是把自己需要用到的數據先 ...
  • 使用 row_number() over (partition by 要去重的欄位 order by 排序欄位) 資料庫表結構 學生成績表 UserGrade Id int Checked 主鍵IdName varchar(50) Checked 學生名Course varchar(50) Chec ...
  • 兩種用法 一樣, 查詢欄位類型需要一致 union 會自動去重 union all 不會去重 ...
  • 在實際的生產中,考慮的實際情況,我們會調整一些預設配置,例如,數據目錄。InfluxDB修改預設的Data目錄後,因許可權問題,服務無法正常運行。以下是具體的分析測試過程。 配置文件為 /etc/influxdb/influxdb.conf,關於數據存放的預設配置如下: 調整後的配置: 啟動influ ...
  • Oracle 資料庫表中已有重覆數據添加唯一鍵(唯一約束) 問題描述 以 demo 舉例,模擬真實場景。 表 TEST_TABLE 有如下欄位和數據:id 是主鍵,code 沒有設置鍵和索引 ID | CODE | 1 | code1 2 | code2 3 | code2 4 | code2 5 ...
  • https://juejin.im/post/5c91ac636fb9a071012a0c28 詳述MySQL主從複製原理及配置主從的完整步驟 innodb引擎的4大特性 事物的4種隔離級別 sql語句分類 事務是如何通過日誌來實現的 MySQL資料庫幾個基本的索引類型:普通索引、唯一索引、主鍵索引 ...
  • 學習筆記:非原著 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...