美文网首页
1179. Reformat Department Table

1179. Reformat Department Table

作者: 30岁每天进步一点点 | 来源:发表于2020-03-10 17:22 被阅读0次

    附leetcode链接:https://leetcode.com/problems/reformat-department-table/
    1179. Reformat Department Table
    Write an SQL query to reformat the table such that there is a department id column and a revenue column for each month.

    select id, sum(case when month ="Jan" then revenue else null end) as Jan_Revenue,    
    sum(case when month = "Feb" then revenue else null end) as Feb_Revenue,
    sum(case when month = "Mar" then revenue else null end) as Mar_Revenue,
    sum(case when month = "Apr" then revenue else null end) as Apr_Revenue,
    sum(case when month = "May" then revenue else null end) as May_Revenue,
    sum(case when month = "Jun" then revenue else null end) as Jun_Revenue,
    sum(case when month = "Jul" then revenue else null end) as Jul_Revenue,
    sum(case when month = "Aug" then revenue else null end) as Aug_Revenue,
    sum(case when month = "Sep" then revenue else null end) as Sep_Revenue,
    sum(case when month = "Oct" then revenue else null end) as Oct_Revenue,
    sum(case when month = "Nov" then revenue else null end) as Nov_Revenue,
    sum(case when month = "Dec" then revenue else null end) as Dec_Revenue
    from Department 
    group by id 
    order by id
    

    小结:
    1)sum(case when month ="Jan" then revenue else null end) as Jan_Revenue
    2)group by
    3)order by

    相关文章

      网友评论

          本文标题:1179. Reformat Department Table

          本文链接:https://www.haomeiwen.com/subject/tvkgdhtx.html