I have an SQL database with I'm calling through a php file. The column can contain both numbers and words. For example it could countain:
1
4
clowns
12
46
Naturally, ORDER BY returns:
1
12
4
46
clowns
but I would like it to sort how it would sort integers with the numbers:
1
4
12
46
clowns
Is it possible to do this?