SQL Server中的聚合函數(shù)有:1、AVG;2、COUNT;3、MAX;4、SUM;5、COUNT_BIG;6、MIN;7、GROUPING;8、VAR;9、STDEV;10、VARP。
讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領域值得信任、有價值的長期合作伙伴,公司提供的服務項目有:主機域名、雅安服務器托管、營銷軟件、網(wǎng)站建設、大興安嶺網(wǎng)站維護、網(wǎng)站推廣。
sql server中的聚合函數(shù)有:
(學習視頻分享:mysql視頻教程)
1、AVG 返回指定組中的平均值,空值被忽略。
例如:
select prd_no,avg(qty) from sales group by prd_no
2、COUNT 返回指定組中項目的數(shù)量。
例如:
select count(prd_no) from sales
3、MAX 返回指定數(shù)據(jù)的值。
例如:
select prd_no,max(qty) from sales group by prd_no
4、MIN 返回指定數(shù)據(jù)的最小值。
例如:
select prd_no,min(qty) from sales group by prd_no
5、SUM 返回指定數(shù)據(jù)的和,只能用于數(shù)字列,空值被忽略。
例如:
select prd_no,sum(qty) from sales group by prd_no
6、COUNT_BIG 返回指定組中的項目數(shù)量,與COUNT函數(shù)不同的是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 返回指定數(shù)據(jù)的校驗值,空值被忽略。
例如:
select prd_no,checksum_agg(binary_checksum(*)) from sales group by prd_n
10、CHECKSUM 返回在表的行上或在表達式列表上計算的校驗值,用于生成哈希索引。
11、STDEV 返回給定表達式中所有值的統(tǒng)計標準偏差。
select stdev(prd_no) from sales
12、STDEVP 返回給定表達式中的所有值的填充統(tǒng)計標準偏差。
例如:
select stdevp(prd_no) from sales
13、VAR 返回給定表達式中所有值的統(tǒng)計方差。
例如:
select var(prd_no) from sales
14、VARP 返回給定表達式中所有值的填充的統(tǒng)計方差。
例如:
select varp(prd_no) from sales
相關推薦:sql數(shù)據(jù)庫技術文章
當前標題:SQLServer中的聚合函數(shù)有哪些
文章位置:http://weahome.cn/article/cgidjs.html