Hi
Have problem when there is letter and number in same column, in title etc. Example when using ORDER BY column asc (a-z) it sorting like this
A 32
A 8
B 32
B 8
mysql think 32 is less than 8, or 32 as 3 which is less than 8 and then correct sorting by SQL, but I want sort like this
A 8
A 32
B 8
B 32
Is it possible to fix this somehow? Is there some special data-type setting for column and contents like this?