查詢 select * from 表名 --簡單查詢 查詢指定列 select 指定的列 from 表名select id,name,sex,age from Employee--註:select age*14 from Employee --簡單查詢--查詢前幾行信息 select top 幾行 ...
--======================查詢=========================
--select * from 表名
--簡單查詢---查詢指定列 select 指定的列 from 表名
select id,name,sex,age from Employee
--註:select age*14 from Employee
--簡單查詢--查詢前幾行信息 select top 幾行 * from 表名
select top 5 * from Employee
--查詢前6名員工的姓名、性別、年齡
select top 6 name,sex,age from Employee
--簡單查詢--帶條件的查詢
--查詢年齡大於25的員工
select * from Employee where age>25
--查詢年齡大於等於25 小於等於30的員工
select * from Employee where age>=25 and age<=30
--查詢年齡大於25 的員工的姓名 年齡 性別 生日
select name,age,sex,birthday from Employee where age>25
select * from Employee where age>25 and sex=0
---=============對查詢結果進行排序==============
--按年齡升序顯示信息
select * from Employee order by age asc
--按年齡降序顯示
select * from Employee order by age desc
--簡單查詢-----對查詢結果去除重覆數據 關鍵字 distinct
select distinct age from Employee
--簡單查詢------給查詢的列起別名 as as可以省略
select a.Age 年齡,a.Name 姓名 from Employee a
---=========================模糊查詢=============================
--關鍵字是 like
--模糊查詢要配合 通配符 進行
-- 通配符有四種 :% — [] [^]
--通配符 %:表示任意匹配 0個 或多個字元
-- 查詢姓'王'的員工信息
select * from Employee where name like '王%' --第一個字為'王'的
--查詢名字以'三'結尾的
select *from Employee where name like '%王' --最後一個字為'王'的
-- 名字包含'三'的
select * from Employee where name like '%王%' --有'王'的
--通配符 _:表示任意一個字元
select * from Employee where name like '張_'
select * from Employee where name like '張__' --- 一個'張'加任意一個字, 一個_ 為一個字
select * from Employee where name like '_張_'
-- [] 和 [^] 的使用
--1) [...]: 表示在指定範圍內
select * from Employee where Age like '2[0,2,1]' --十位為2 且 個位是0或2或1 的
--2) [ ^...]: 表示不在指定範圍內
select * from Employee where Age like '[^2,1][6,7]' --不是二十幾 或不是十幾 且 個位是6或7的
--Between ... and ...表示範圍
select * from Employee where age between 20 and 30 --年齡在20和30之間
-- in 的查詢 表示包含在其中的
select * from Employee where age in (15,20,25,30) --查找屬於符合其中之一的數據
-- not in 表示不包含在其中的
select * from Employee where age not in (15,20,25,30) --查找出了這幾個的其他的數據
--【難題】 查詢沒有員工的部門信息
select * from Department where Id not in (select distinct DepartmentId from Employee)
-- 對 Null 值進行查詢 is null
--查詢沒有身份證號的員工
select * from Employee where CardId is Null
select * from Employee where CardId is not Null
--排序 order by 升序【預設】asc / 降序desc
select * from Employee order by age desc
----==================聚合函數:對數據表的數據進行一些簡單地運算,將結果顯示出來=========
---- sum() 求和函數
select sum(age) from Employee
---- avg() 平均值
select avg(age) from Employee
---- max() 最大值
select max(age) from Employee
---- min() 最小值
select min(age) from Employee
---- count() 計數器
select count(age) from Employee
--=================================================================================================
--======== 聚合函數不能與普通列放在一起被查詢出來,除非都用聚合函數 或者用在分組查詢中 ==========
--======== 如 select max(age),name from 表名 錯誤 ==========
----====== select max(age),count(name) from 表名 正確 ==========
--=================================================================================================
--【難題:查詢年齡最大的員工的信息】
-- 法一 嵌套法
select * from Employee where age=(select max(age) from Employee)
--法二 排序法
select top 1 * from Employee order by age desc
--=================== 分組統計查詢 關鍵字:group by 分組列===================
-- 分別=分組統計出男員工 女員工的平均年齡
select avg(age) from Employee group by Sex
--分組統計出每個部門的員工數量
select count(name),DepartmentId from Employee group by DepartmentId --註意兩個DepartmentId 前後一致性
--==== 對分組查詢設置條件 關鍵字 having
--分別統計出每個部門的員工數量 只顯示員工數量大於3人的部門
select count(name),DepartmentId from Employee group by DepartmentId having count(name)>3
--=======================================嵌套查詢========================================================
--查詢年齡大於平均年齡的 員工信息
select * from Employee where Age>(select avg(Age) from Employee)
--查詢年齡大於平均年齡的 員工人數
select count(1) from Employee where Age>(select avg(Age) from Employee)
--查詢至少有一個員工的部門信息 【重點】
--查詢部門信息 where 部門編號 in (查詢員工信息的部門編號)
select * from Department where Id in(select distinct DepartmentId from Employee)
select * from Department where Id not in(select distinct DepartmentId from Employee)
--查詢第3條到第6條的 員工信息
-- 查詢前4條 但是 不是前2條 【重點】
select top 4 * from Employee where Id not in(select top 2 Id from Employee)
--2-7條
select top 6 * from Employee where Id not in (select top 1 Id from Employee)
--======== any 、 some 關鍵字 表示一些、其中一個 =========
--select 欄位 from 表1 where 欄位 > some (select 欄位 from 表2)
-- 大於 some/any 相當於大於 最小值
--查詢出年齡大於任意一個女員工年齡的 男員工
select * from Employee where Sex=1 and age> any (select age from Employee where Sex=0)
select * from Employee where Sex=1 and age> some (select age from Employee where Sex=0)
--all 關鍵字
--大於 all 相當於 大於 最大值
--查詢出年齡大於 所有女員工年齡的 男員工
select * from Employee where Sex=1 and age > all (select age from Employee where sex=0)
---=================================================
-- 次序函數 Row_Number(): 給查詢結果添加一個序號列
select ROW_NUMBER() over(order by id ) as 序號, * from Department
select * , ROW_NUMBER() over(order by id) as 序號 from Department
---==================多表連接查詢=================
use DBEmp
--比如:
--查詢雇員的姓名和雇員所在部門名稱【10單元】
select eName,dName from dept d inner join emp e on d.deptNo=e.deptNo group by dName
--連接查詢:通過連接關鍵字,將兩張或多張數據表 連接成一張數據表,作為數據源,放在select *from 後面
--連接查詢: 分為 內連接 外連接(左外連接、右外連接、全外連接) 自連接
--內連接:關鍵字 inner join (inner 可以省略)
--作用: 又叫等值連接,將符合連接條件的兩個表的數據查詢出來
select * from dept join emp on dept.deptNo=emp.deptNo
--小結:格式:select * from 表1 join 表2 on 表1.id=表2.表1的id
作者還在學習中,發現錯誤的請在評論區留言。 如果有客友覺得文章還行的話,請點波推薦哦