mysql case when 聚合函数_mysql聚合函数

group_concat  可以对分组查询后的值进行拼接,如

select a group_concat(b) from z group by a;  就会按a列分组,b列对应聚合结果以逗号进行分隔

select 与 case结合使用最大的好处有两点,一是在显示查询结果时可以灵活的组织格式,二是有效避免了多次对同一个表或几个表的访问。  可以完成行转列的操作

下面举个简单的例子来说明。例如表 students(id, name ,birthday, sex, grade),要求按每个年级统计男生和女生的数量各是多少,统计结果的表头为,年级,男生数量,女生数量。如果不用select case when,为了将男女数量并列显示,统计起来非常麻烦,先确定年级信息,再根据年级取男生数和女生数,而且很容易出错。

用select case when写法如下:

SELECT grade,COUNT(CASE WHEN sex = 1THEN 1

ELSE NULL                        END) 男生数,

COUNT(CASE WHEN sex = 2THEN 1                            ELSE NULL                       END) 女生数

FROM students

GROUP BY grade;

行转列举例:

如对日志的保存字段为:

id   attribute value

1    attr1    BMW

1    attr2    100

1    attr3     2013-01-01

需要针对不同的attribute按照id进行分组统计,可以

select id,

Max(case when attribute='attr1' then value  end)   as attr1

Max(case when attribute='attr2' then value end) as attr2

Max(case when attribute='attr3' then value end) as attr3

Max(case when attribute='attr4' then value end) as attr4

from t

group by id;

Max用来对case中符合条件的取出最大值,也可以用count()来统计个数

你可能感兴趣的:(mysql,case,when,聚合函数)