Ervan uitgaande dat er echt een getal in de tekenreeks staat, kunt u patindex()
. gebruiken :
select left(s, patindex('%[^0-9]%', s) - 1)
from (select substring(col, patindex('%[0-9]%', col), len(col)) as s
from t
) t;
Ervan uitgaande dat er echt een getal in de tekenreeks staat, kunt u patindex()
. gebruiken :
select left(s, patindex('%[^0-9]%', s) - 1)
from (select substring(col, patindex('%[0-9]%', col), len(col)) as s
from t
) t;