sum values by month mariadb

Solutions on MaxInterview for sum values by month mariadb by the best coders in the world

showing results for - "sum values by month mariadb"
Santino
18 Apr 2017
1SELECT MONTHNAME(o_date), SUM(total) 
2FROM theTable
3GROUP BY YEAR(o_date), MONTH(o_date)
4
similar questions
queries leading to this page
sum values by month mariadb