如图是我筛选出来的数据,语句是
select time,wish_num,num from wish_num where time >= '15296000' and time <= '1495382399' group by time,wish_num,
time和wish_num是联合主键
现在我希望把同一个日期中的数据合并成一行,如
日期 1次 2次 5次 10次 20次
1495294000 2 2 4 11 2
1495296000 2 2 4 11 2 、
形如这样的格式,请问要怎么修改上面的语句,进行子查询还是?
怪我咯2017-05-24 11:35:01
最简单就是group_concat了,楼主不用那就只好case when了,由于楼主group by之后的num并没有使用聚合函数,因此我理解为num只有一个值?sql如下
select time,
max(case when wish_num=1 then num else 0) '1',
max(case when wish_num=2 then num else 0) '2',
max(case when wish_num=5 then num else 0) '5',
max(case when wish_num=10 then num else 0) '10',
max(case when wish_num=20 then num else 0) '20'
from wish_num where time >= '15296000' and time <= '1495382399' group by time;