SQL query to retrieve financial year data grouped by the year

前端 未结 3 1728
一整个雨季
一整个雨季 2021-02-10 07:52

I have a database with lets assume two columns (service_date & invoice_amount). I would like to create an SQL query that would retrieve and group the data for each financial

3条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-10 08:34

    to get data from April to March  ---
    
    SELECT
    CASE 
        WHEN MONTH(application_receiving_date)>=4 
        THEN concat(YEAR(application_receiving_date), '-',YEAR(application_receiving_date)+1) 
        ELSE concat(YEAR(application_receiving_date)-1,'-', YEAR(application_receiving_date)) 
    END AS app_year,
    from table_name 
    GROUP BY app_year  
    

提交回复
热议问题