22-9 聚合函数

Posted Strugglinggirl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了22-9 聚合函数相关的知识,希望对你有一定的参考价值。

SQL 聚合函数(把多条数据变成一条,需要用到分组,然后统计):

MAX(最大值)、MIN(最小值)、AVG(平均值)、SUM(和)、COUNT(数量:记录的条数)

select * from TblStudent 

--统计出所有人的年龄的总和
select sum(tsage) as 年龄总和 from TblStudent

--统计当前表中一共有多少条记录
select count(*) from TblStudent

--计算平均年龄
select 平均年龄=(select sum(tsage) as 年龄总和from TblStudent)*1.0/(select count(*) from TblStudent)

--计算年龄最大的
select MAX(tsage) from TblStudent

--计算年龄最小的
select MIN(tsage) from TblStudent


--计算平均值avg
select avg(tsage) from TblStudent

 

------------聚合函数的一些其他问题-------------------
--1.聚合函数不统计空值
select * from TblStudent
select count(tsage) from TblStudent
select avg(tsage) from TblStudent  --avg()也是不统计空值的

select sum(tsage) from TblStudent --sum()对于nulll值,认为是0
--2.如果使用聚合函数的时候,没有手动group by分组,那么聚合函数会把整个表中的数据作为一组来统计。

 

以上是关于22-9 聚合函数的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——声明函数

VSCode自定义代码片段8——声明函数

MySQL 聚合函数初探

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销

在 Visual Studio 中创建构造函数的代码片段或快捷方式

调用模板化成员函数:帮助我理解另一个 *** 帖子中的代码片段