my question is because the months in the database are disorderly and I want to know why they come out so I leave the code sql
SELECT mes_traslado FROM formulario_precebo
WHERE año_destete = 2017
GROUP BY mes_traslado;
and the result it gives me from the database is like this
1
10
11
12
2
3
4
5
6
7
8
9
I know there is a way to sort them but I want to know why they come out messy when doing this simple query