搜尋

首頁  >  問答  >  主體

子查詢 - mysql如何把多行資料合併到一行的多列中


如圖是我篩選出來的數據,語句是
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 、
形如這樣的格式,請問要怎麼修改上面的語句,進行子查詢還是?

習慣沉默習慣沉默2792 天前897

全部回覆(1)我來回復

  • 怪我咯

    怪我咯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;

    回覆
    0
  • 取消回覆