I have a MySQL table with 'address' field with addresses in format:
StreetName 1
StreetName 10
StreetName 34
Streetname 8
How to make a MySQL Query that will resault:
StreetName 1
Streetname 8
StreetName 10
StreetName 34
Simple "order by address" doesn't work in this case, because "StreetName 8" is AFTER "StreetName 34".