文字列に実際に数値があると仮定すると、patindex()
を使用できます。 :
select left(s, patindex('%[^0-9]%', s) - 1)
from (select substring(col, patindex('%[0-9]%', col), len(col)) as s
from t
) t;
文字列に実際に数値があると仮定すると、patindex()
を使用できます。 :
select left(s, patindex('%[^0-9]%', s) - 1)
from (select substring(col, patindex('%[0-9]%', col), len(col)) as s
from t
) t;