python聚合函数有哪些 python中聚合函数

主机教程 建站分享 2年前 (2022-09-18) 203次浏览

文章摘要:python聚合函数有哪些 python中聚合函数

python中的聚合函数有以下几种 1.count(*)函数 count(*)表示计算总行数,括号中写星与列名 […]

python中的聚合函数有以下几种

1.count(*)函数

count(*)表示计算总行数,括号中写星与列名,结果是相同的。

count(*)函数使用方法:

#查询学生总数

select count(*) from students;

2.max()函数

max()表示求最大值

max()函数使用方法:

#查询女生的编号最大值

select max(id) from students where gender=2;

3.min()函数

min()函数表示求最小值。

min()函数使用方法:

#查询未删除的学生最小编号

select min(id) from students where is_delete=0;

4.sum()函数

sum()函数表示求和。

sum()函数使用方法:

#查询男生的总年龄

select sum(age) from students where gender=1;

5.avg()函数

avg()函数表示求平均值。

avg()函数使用方法:

#查询未删除女生的编号平均值

select avg(id) from students where is_delete=0 and gender=2;


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python聚合函数有哪些 python中聚合函数
文章链接:http://www.7966.org/post/14367.html
转载请注明出处

喜欢 (0)