微软的sql Server中默认集成了很多的聚合函数,使用这些聚合函数可以大大减轻我们的sql语句编写量。
-常用聚合函数 --在聚合函数中,为NULL的记录不参与计算,count(*)除外 --MAX select MAX(Cid) as '最大编号' from dbo.NewCourse where Cperiod<6 --min select MIN(cid) as 最小编号 from dbo.NewCourse --sum select SUM(Cperiod) from dbo.NewCourse --avg --计算平均值时,被除数未计算为NULL的记录,会造成结果的不准备 select AVG(Cperiod) from dbo.NewCourse --计算平均值建议时候语句 select SUM(Cperiod)/COUNT(*) from dbo.NewCourse select AVG(isnull(Cperiod,0))from dbo.NewCourse --函数isnull()字段,如果为空返回值)用于处理null值 --count --计算行数 select COUNT(*) from dbo.NewCourse where Cperiod<5 --count()后面括号的内容最好是*,统计的时候包含Null的记录 --如果是count(列名)则不会统计列值为null的记录 select * from dbo.NewCourse where Cid in(1,2) --between还可用于日期形式的查询语句 select * from dbo.Teacher where Tbiethday between '2010-10-10' and '2015-10-10'