1.基礎的查詢
1)重命名列
select name as '姓名' from 表名
2)定義常量列
select 是否 ='是' from 表名
3)top用法 percent
--這種寫法可以獲取前20%條字段。
select top 20 percent * from 表名
4)去除重復列
select distinct 列名 from 表名
5)聚合函數
max avg count min sum
--多個聚合結果 在一個結果集中
select
最大年齡 = (select max(age) from 表名),
最小年齡 = (select min(age) from 表名)
6)between and
select * from 表 where xx between 5 and 6
2.Union 使用Union將兩個結果集匯聚在一起。
-- 年齡 工資
-- ————————
-- 19 $20000
-- 50 $20005
-- 30 $23000
-- 匯總 $63005
-- 查詢各年齡段工資,同時顯示所有工資匯總。(像上邊的表)
select
--把年齡轉換成varchar類型
Convert(varchar(10),[age]) as 年齡
Sum([salary]) as 工資
from 員工表
group by age
--將兩個結果集,合並成一個結果集
union
select
--匯總是一個常量列
'匯總' , sum(salary)
from 員工表
使用union合並兩個結果集時,
兩個結果集列數必須一致,並且數據類型對應。
這就是代碼中,把年齡轉換成varchar的原因。
3.Order by
-- Order by 用於結果集排序,
-- 其Order他後邊不只可以接一個字段,
-- 也能接一個 表達式。
Select *
from 表
order by (age+salary)/2.0 desc