博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql-笔记 聚合函数
阅读量:5036 次
发布时间:2019-06-12

本文共 1947 字,大约阅读时间需要 6 分钟。

1 avg([distinct] expr) 返回expr的平均值 distinct:去除重复值。如果没有匹配的行返回null

select student_name,avg(test_score) from student group by student_name;

2 bit_and(expr) 返回按位与计算的结算 如果没有匹配的行 所有bits =1

bit_or(expr) 返回按位或计算的结算 如果没有匹配的行 所有bits=0

bit_xor(expr)返回按异或计算的结算 如果没有匹配的行所有bits=0

3 count(expr) 返回select 行中非null的expr计数值。结果是bigint值,如果没有匹配的行,则返回0

select student.student_name,count(1) from student,course where student.student_id=course.student_id group by student_name

inndb 使用相同的方式 处理count(*)与count(1) ,没有性能上的不同

对MyISAM表,如果从一个表中选择数据,没有其他的列字段,并且没有where条件,count(*) 返回非常快

select count(*) from student

4 count(distinct expr,[expr...]) 返回不同非null值的记录数,如果没有匹配的行,返回0

select count(distinct results) from student; 可以得到一组非null值的字段值的数量

 5 Group_concat( [distinct] expr[,expr...] order by {unsigned_integer | col_name | expr} [asc|desc][,col_name...]][separator str_val])

按一列分组,将 expr 对应的所有 值 打印在一行上,可以按 expr排序 ,每个值之间可以用 ‘ ’ 或其他 符号分隔

列的长度受:group_concat_max_len 系统参数的影响,可以设置大一些但是也要受到max_allowed_packet的值的影响

select student_name ,group_concat(distinct test_score order by test_score desc separator ' ')

from student

group by student_name;

6 json_arrayagg(col_or_expr) 返回包含分组的行的一组json 数组 

select partcode,json_arrayagg(partname) from tbinfopart group partcode;

7 json_objectagg(key,value) 接收2列或2个表达式参数,第一个做为 key,第二个做为值。返回一个对象包含 key-value值,如果有重复键取最后一个

select partcode,json_objectagg(partname,specialtype) from tbinfopart group by partcode;

8 max([distinct] expr) 返回最大值,可以是字符串。有没有distinct 结果一样。如果没有取到行,返回null

min([distinct] expr)返回最小值,可以是字符串。enum/set字段按字符值做比较,不按他的位置。与orderby相返。

9 sum([distinct] expr) 返回求合值,如果没有行则返回null 

10 group by XXX with rollup 在分类汇总的数据上再按每一个分类汇总一个合计行

select year,country,product,sum(profit) as profit from sales group by year,country,product with rollup;

group by XXX with rollup limit Y 取分类汇总的Y行

any_value():显示不在分类里的列

select partcode,any_value(partname),sum(id) from tbinfopart group by partcode with rollup;

 

转载于:https://www.cnblogs.com/caojuansh/p/10951214.html

你可能感兴趣的文章
hexo 搭建博客
查看>>
建造者模式(屌丝专用)
查看>>
Nginx + Tomcat 反向代理 如何在高效的在一台服务器部署多个站点
查看>>
C++的引用
查看>>
完整ASP.Net Excel导入
查看>>
循环队列的运用---求K阶斐波那契序列
查看>>
python itertools
查看>>
http://lorempixel.com/ 可以快速产生假图
查看>>
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
文件操作
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
linux下设置固定IP的方法
查看>>
ubuntu 16.04 (软件应用)-输入法
查看>>
graphite custom functions
查看>>
js获取请求地址后面带的参数
查看>>
设计模式のCompositePattern(组合模式)----结构模式
查看>>
系统管理玩玩Windows Azure
查看>>
c#匿名方法
查看>>
如何判断链表是否有环
查看>>
ssh无密码登陆屌丝指南
查看>>