按季度輸出,橫排sql

驢、發表於2020-11-14

 表資料

想要查詢的格式

 實現橫排的sql語句

select `year` as "年份", max(case when `quarter` = 1 then volume else null end)  as "一季度",
                max(case when `quarter` = 2 then volume  else null end)  as "二季度",
                max(case when `quarter` = 3 then volume  else null end)  as "三季度",
                max(case when `quarter` = 4 then volume  else null end)  as "四季度"
from sale_report
GROUP BY `year`

 

相關文章