En supposant qu'il y ait vraiment un nombre dans la chaîne, vous pouvez utiliser patindex()
:
select left(s, patindex('%[^0-9]%', s) - 1)
from (select substring(col, patindex('%[0-9]%', col), len(col)) as s
from t
) t;
En supposant qu'il y ait vraiment un nombre dans la chaîne, vous pouvez utiliser patindex()
:
select left(s, patindex('%[^0-9]%', s) - 1)
from (select substring(col, patindex('%[0-9]%', col), len(col)) as s
from t
) t;