只是使用
substring()怎么样?
select replace(substring(option_field_2, 13, 999), ';', '')
或者,如果您不知道前缀有多长时间:
select replace(stuff(option_field_2, 1, charindex(':', option_field_2) + 1, ''), ';', '')这是一个db
<> fiddle。

只是使用
substring()怎么样?
select replace(substring(option_field_2, 13, 999), ';', '')
或者,如果您不知道前缀有多长时间:
select replace(stuff(option_field_2, 1, charindex(':', option_field_2) + 1, ''), ';', '')这是一个db
<> fiddle。