--聚合函数
Use AdventureWorkSlT2008
Go
Avg()
:select avg(score1) as 成绩1,avg(score2) as 成绩2 from 表名
SUM()
:select sum(score1) as 成绩1,sum(score2) as 成绩2 from 表名。
Max();Min()
:select max(score1),min(score2) from 表名
dictinct 取消重复的,只能紧跟在select后面,order by 顺序
like 模糊查询
group by 分组查询
Select 列名 from 表名 group by id
类型转换:
Select CustomerId+Title from SatelsLT.Customer
--类型转换
->Convert (目标类型,转换的表达式,格式规范)
->cast(表达式 as 类型)
Select Convert (nvarchar(32),CustomerId) +Title from SalesLT.Customer
Select cast (CustomerId as nvarchar(32) )+Title from SalesLT.customer
日期函数
Select getdate() //获取当前日期