Mysql
 sql >> Database >  >> RDS >> Mysql

Indirizzo ordine SQL per numero civico

Si prega di provare:

select *
From tbl
order by cast(Left(Col, PatIndex('%[^0-9]%', Col)) as int)

Demo di SQL Fiddle

Per MySql, prova:

select *
From tbl
order by convert(SUBSTRING_INDEX(Col, ' ', 1), UNSIGNED INTEGER)

MySql Fiddle