中かっこの間で値を個別に分割するクエリが必要です。
私のvarchar値は
16(8),14(10)
として分割する必要があります
16,14
16と14の値だけが必要ですが、(8) (10)
中括弧内の値は必要ありません
私はこのクエリを試しました
select
case
when charindex('(0-9)', OtherProduct) > 0
then rtrim(left(OtherProduct, charindex('(0-9)', OtherProduct)-1))
else OtherProduct end as OtherProduct
from dbo.rxnreactions where rsd='P=15(61),16(8),14(10)R=1,7S=9012'
誰でも私がそれを分割するのを手伝ってくれますか?