SQL Server中的聚合函数有:1、AVG;2、COUNT;3、MAX;4、SUM;5、COUNT_BIG;6、MIN;7、GROUPING;8、VAR;9、STDEV;10、VARP。
sql server中的聚合函数有:
(学习视频分享:mysql视频教程)
1、AVG 返回指定组中的平均值,空值被忽略。
例如:
select prd_no,avg(qty) from sales group by prd_no
2、COUNT 返回指定组中项目的数量。
例如:
select count(prd_no) from sales
3、MAX 返回指定数据的最大值。
例如:
select prd_no,max(qty) from sales group by prd_no
4、MIN 返回指定数据的最小值。
例如:
select prd_no,min(qty) from sales group by prd_no
5、SUM 返回指定数据的和,只能用于数字列,空值被忽略。
例如:
select prd_no,sum(qty) from sales group by prd_no
6、COUNT_BIG 返回指定组中的项目数量,与COUNT函数不同的是COUNT_BIG返回bigint值,而COUNT返回的是int值。
例如:
select count_big(prd_no) from sales
7、GROUPING 产生一个附加的列,当用CUBE或ROLLUP运算符添加行时,输出值为1.当所添加的行不是由CUBE或ROLLUP产生时,输出值为0
例如:
select prd_no,sum(qty),grouping(prd_no) from sales group by prd_no with rollup
8、BINARY_CHECKSUM 返回对表中的行或表达式列表计算的二进制校验值,用于检测表中行的更改。
例如:
select prd_no,binary_checksum(qty) from sales group by prd_no
9、CHECKSUM_AGG 返回指定数据的校验值,空值被忽略。
例如:
select prd_no,checksum_agg(binary_checksum(*)) from sales group by prd_n
10、CHECKSUM 返回在表的行上或在表达式列表上计算的校验值,用于生成哈希索引。
11、STDEV 返回给定表达式中所有值的统计标准偏差。
select stdev(prd_no) from sales
12、STDEVP 返回给定表达式中的所有值的填充统计标准偏差。
例如:
select stdevp(prd_no) from sales
13、VAR 返回给定表达式中所有值的统计方差。
例如:
select var(prd_no) from sales
14、VARP 返回给定表达式中所有值的填充的统计方差。
例如:
select varp(prd_no) from sales
相关推荐:sql数据库技术文章