all的用法 與子查詢配合使用 在all的用法中,有三種 第一種: <>all類似於not in 等效於not in 語法:select 列名 from 表名 where 列名 <> all(select 列名 from 表名 where 條件表達式); 例如1:顯示表中與CLERK部門的員工工資都 ...
all的用法
與子查詢配合使用
在all的用法中,有三種
第一種: <>all類似於not in 等效於not in
語法:select 列名 from 表名 where 列名 <> all(select 列名 from 表名 where 條件表達式);
例如1:顯示表中與CLERK部門的員工工資都不同的員工姓名和工資.
select ename ,sal from emp
where sal<>all(select sal from emp where job='CLERK');
例如2:查看表中與SALESMAN崗位員工不同工資的員工姓名和工資.
select ename ,sal from emp
where sal<>all(select sal from emp where job='SALESMAN');
例如:3.查看表中與SCOTT不同部門的員工的員工姓名和工資。
select ename,sal from emp
where deptno <> all(select deptno from emp where ename='scott');
第二種: >all比子查詢中的最大值還要大
例如:查看表中比30號部門最高工資的員工還高的員工姓名和工資
select ename,sal from emp
where sal > all(select sal from emp where deptno=30);
第三種: <all比子查詢中的最小值還要小
例如:查看表中比10號部門最低工資的員工還要低的員工姓名和工資
select ename ,sal from emp
where sal < all (select sal from emp where deptno=10);
註意:= all 是不存在的
any的用法
與子查詢配合使用
在any的用法中,有三種
語法:select 列名 from 表名 where 列名 = any (select 列名 from 表名 where 條件表達式);
第一種: = any 與任何一個相等
例如:查看表中與20號部門員工工資相同的員工姓名和工資
select ename,sal from emp where sal =any (select sal from emp where deptno = 20);
第二種: > any 比最低的高
例如:查看表中比20號部門工資最低的員工的工資高的員工姓名和工資
select ename,sal from emp where sal >any (select sal from emp where deptno = 20);
第三種:< any 比最高的低
例如:查看表中比10號部門工資最低的員工的工資高的員工姓名和工資
select ename,sal from emp where sal < any (select sal from emp where deptno = 10);
註意:除了= any 會包含自己,其餘的<any和>any都不會包含自己.
內連接
說明:在表進行跨表查詢時,查詢結果只是返回符合連接條件的數據
關鍵字:inner join
語法:select 別名1.列名1,別名2.列名2 from 表名 1 [as] 別名1 inner join 表名2 [as] 別名2 on 別名1.列名3=別名2.列名3 where 列名4 =值;
lnner join 代替了原本的多表查詢的逗號
第一個on替代了之前的多表查詢用來建立聯繫的where
例:查詢7934 工號的員工所在的部門名稱,結果顯示員工編號和部門名稱
等值連接:
select empno,dame from emp e,dept d where e.deptno=d.deptno
and empno=7934;
內連接:
select empno ,dname from emp e inner join dept d on e.deptno=d.deptno where empno=7934;
例:查詢SCOTT所在的城市使用內連接寫
select ename,loc from emp e inner join dept d on e.deptno=d.deptno
where e.ename='scott';
三表內連接語法
語法1:
select列 ----最終要顯示的數據列註意應有別名點出來
from第一張表 ---第一個數據源需要取別名
inner join第二張表 ---第二個數據源需要取別名
on 第一張表的列=第二張表的列 ---建立—二表的聯繫lnner join第三張表 ---第三個數據源需要取別名
on第二張表的列=第三張表的列 ---建立二三表的聯繫
where表達式 ---給到條件來篩選
例:查詢謳歌教過哪些學生
select sname ,teacher
from student st inner join score sc on st.sno=sc.sno
inner join course cs on sc.cno=cs.cno where cs.teacher='謳歌';
語法2:
select列
from 第1張表
inner join 第2張表
inner join 第3張表
on 1表列=2表列 and 2表列=3表列
where 條件表達式
例:查詢謳歌教過哪些學生
select sname ,teacher
from
student st inner join score sc inner join course cs
on st.sno=sc.sno and sc.cno=cs.cno where cs.teacher='謳歌';
外連接
左表:在多連接查詢時第一個出現的表,稱之為左表
右表:在多表連接查詢是最後出現的表,稱之為右表
左外連接:
說明:使用左連接進行多表連接查詢時,如果某個表中的數據需要全部顯示,那查詢時就使用這個方法。
查詢時將這個表作為主表即左表,在右表符合條件的數據會顯示
在查詢的結果中,在右表中不符合條件的數據,也會顯示,但是不符合條件的查詢欄位顯示是null
關鍵字:left join
語法:
select 別名1.列名,別名2.列名2
from 表名1 [as] 別名1
left join 表名2[as]別名2
on 別名1.列名3=別名2.列名3
where 條件表達式
例如:查詢哪個部門沒有員工,結果顯示部門名稱、員工編號
select dname,empno from dept d left join emp e
on e.deptno=d.deptno where empno is null;
例如:查詢哪個部門沒有員工,結果顯示部門名稱、員工編號
select dname,empno from dept d left join emp e
on e.deptno=d.deptno where empno is null;
例如:查詢哪個人沒有領導 顯示姓名,mgr
select e.ename,e.mgr from emp e left join emp d on e.empno=d.empno
where e.mgr is null;
select ename,mgr from emp where mgr is null;
例如:查詢每位的員工的工資和津貼(comm),顯示員工姓名,工資和津貼
select e.ename,e.sal ,comm from emp e left join emp d on e.empno=d.empno;
右外連接:
說明:使用右連接進行多表連接查詢時,如果某個表中的數據需要全部顯示,那查詢時就使用這個方法。
查詢時將這個表作為主表即右表,在左表符合條件的數據會顯示
在查詢的結果中,在左表中不符合條件的數據,也會顯示,但是不符合條件的查詢欄位顯示是null
關鍵字:right join
語法:
select 別名1.列名,別名2.列名2
from 表名1 [as] 別名1
right join 表名2[as]別名2
on 別名1.列名3=別名2.列名3
where 條件表達式
註意:
左右連接的語句寫法上區別就是主表副表相反
左連接的主表是關鍵字左邊的表
右鏈接的主表是關鍵字右表的表
左右連接的顯示結果會根據主副表的不同而不同
左連接左表列會全顯示,右表匹配上的列但是沒有相應值的會顯示null,若左表的列少於右表的列則右表多的列不會顯示
右鏈接右表列會全顯示,左表匹配上的列但是沒有相應值的會顯示null,若右表的列少於左表的列則左表多的列不會顯示
全外連接
註意:mysql沒有全外連接,只做瞭解
關鍵字:full join
語法:
select 別名1.列名,別名2.列名2
from 表名1 [as] 別名1
full join 表名2[as]別名2 ----
on 別名1.列名3=別名2.列名3 ----建立兩張表之間的聯繫
where 條件表達式
聯合查詢
關鍵字:union 只做瞭解
作用:主要是用作將左連接和右連接查詢拼接到一起
語法:
(select 別名1.列名,別名2.列名2
from 表名1 [as] 別名1
left join 表名2[as]別名2 ----
on 別名1.列名3=別名2.列名3 ----建立兩張表之間的聯繫
where 條件表達式)
union
(select 別名1.列名,別名2.列名2
from 表名1 [as] 別名1
right join 表名2[as]別名2 ----
on 別名1.列名3=別名2.列名3 ----建立兩張表之間的聯繫
where 條件表達式);
自連接
說明:在 mysaL中有時會有一些特殊情況,需要將一張表當做兩張表來查詢,顯示出需要的數據,因為兩張是相同的,所以幾乎所有的列都是通過別名點出來的,那麼可以使用到自連接.
關鍵字: exists
例如:查詢哪些員工是領導
select a.ename --先確定需要查詢顯示的列,但是這個列是
我們首次查詢這張表時的列
from emp a ---數據源,是首次查詢的表
where exists --- exists意思是存在,根據該關鍵字後面的子查詢
結果來進行判斷,如果判斷結果是 true (子查詢有結果),那麼主查詢語句將有符合條件的返回值
(select b.empno from emp b where b.mgr = a.empno); ---子查詢中的數據源,可以理解成我們第二次查這張表.
語法:
Select 別名1.列名1,別名1.列名2
from 表名 [as] 別名1
where exists
(select別名⒉.列名 3 from表名[as]別名 2 where建立兩張表聯繫語句);
例如:查詢哪些員工是領導
第一種方法:
select ename from emp where empno in(select distinct mgr from emp);
第二種方法:
自連接:
select a.ename from emp a
where exists
(select b.empno from emp b where b.mgr=a.empno );
例如:查詢哪些員工不是領導
第一種方法:
select ename from emp where empno not in(select distinct mgr from emp where mgr is not null );
第二種方法:
自連接:
select a.ename from emp a
where not exists
(select b.empno from emp b where b.mgr=a.empno );