I'm running a SQL query to show me the total result for months by selecting the year but when it is executed it shows me the badly organized months and I used the ORDER BY function in DESC and ASC and do not want to organize, here I leave the SQL code and capture the query: it shows me the months in January, October, November, December, etc. and I want it to show January, February, March , April ..... etc.
SELECT DATE_FORMAT(STR_TO_DATE(mes_traslado,"%m") ,"%M") AS
mes,AVG(conversion_ajust_fin) AS total FROM formulario_precebo WHERE
año_destete = 2017 GROUP BY mes_traslado;