2017-12-27 637 views
0

我有这个疑问:如何在我的MySQL使用GROUP_CONCAT

select IF(user_name IS NULL or user_name= '', distinct_id, user_name) 
     as user_info, event, count(event) as event_count 
    from mixpanel 
    where 
     (mixpanel.event = 'app_open' or 
     mixpanel.event = 'post_created' or 
     mixpanel.event = 'create_comment' or 
     mixpanel.event = 'class_opened' or 
     mixpanel.event = 'post_read') 
    AND 
     class_id = 'AKSJSDKSD' 

    group by event, user_name, distinct_id 
    order by user_name desc 

,它给了我下面的结果:

+-----------+------------+--------+ 
| user_info | event | event_count | 
+-----------+------------+--------+ 
| Ben Cho | up | 12   | 
| Lee Mar | up | 21   | 
| Lee Mar | side | 12   | 
| Lee Mar | down | 16   | 
| Al Gov | up | 14   | 
| Al Gov | down | 13   | 
| Al Gov | side | 13   | 
+-----------+------------+--------+ 

我需要的是聚集像这样每个用户数据:

+-----------+------------+--------+ 
| user_info | up | down | side 
+-----------+------------+--------+ 
| Ben Cho | 12 | 0 | 0  | 
| Lee Mar | 21 | 16 | 12 | 
| Al Gov | 14 | 13 | 13 | 
+-----------+------------+--------+ 

我该如何在mySql上实现这个功能?

谢谢!

+0

这不是用'group_concat'实现的。据我所知,你正在做一次枢轴操作。我不知道在MySQL中是否有自动的方式。你也可以阅读手册(我必须为了找出答案)。 –

+0

我会的。感谢您的当场快速回复@JonathanLeffler –

回答

0

从我可以告诉你,你只是想条件聚合。不需要group_concat()

select (case when user_name IS NULL or user_name = '' then distinct_id else user_name 
     end) as user_info, 
     sum(mp.event = ('app_open')) as num_app_open, 
     sum(mp.event = ('post_created')) as num_post_created, 
     sum(mp.event = ('create_comment')) as num_create_comment 
from mixpanel mp 
where mp.event in ('app_open', 'post_created', 'create_comment') and 
     class_id = '-KtmM9EACwDTR98a_yU9' 
group by user_info 
order by user_info desc; 
+0

!谢谢!这正是我需要的!再次感谢您的迅速回答。谢谢@Gordon Linoff –