Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Estrai il primo valore numerico dalla stringa sql

Supponendo che ci sia davvero un numero nella stringa, puoi usare patindex() :

select left(s, patindex('%[^0-9]%', s) - 1)
from (select substring(col, patindex('%[0-9]%', col), len(col)) as s
      from t
     ) t;