首页 > 代码库 > 2、SQL基础整理(聚合函数)
2、SQL基础整理(聚合函数)
聚合函数
--求平均
select AVG(age) as 年龄 from xuesheng
select AVG(chinese) as 语文 from xuesheng where class = 1
*只能对数字类型的进行操作
--求个数
select COUNT(*) from xuesheng/*查询表中有多少条数据*/
select COUNT(*) from xuesheng where name like ‘王%‘
select COUNT(distinct class) from xuesheng
(两个班级)
--求最大值
select MAX(chinese) from xuesheng where class = 1
--求最小值
select MIN(chinese) from xuesheng where class = 1
--求和
select SUM(chinese) from xuesheng
(以上函数括号中都可以加distinct,默认为all)
组合使用
select AVG(age) as 平均年龄,COUNT(*)as 人数 from xuesheng where class = 1
2、SQL基础整理(聚合函数)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。