SQL needed: sum over values by month

后端 未结 4 875
离开以前
离开以前 2020-12-31 05:42

i have an table with values like this:

count1   count2  count3  month
12        1       4       01/12/2011
6         5       4       23/12/2011
14                 


        
4条回答
  •  囚心锁ツ
    2020-12-31 06:01

    SELECT
    SUM(count1) as sum_count1,
    to_char(month, 'yyyy-MM') as month
    FROM
    dataframe 
    GROUP BY
    month
    

提交回复
热议问题