次のような文字列があります。
189 A 190 メリット 191 68.6
190
と191
-の間の値が必要ですMerit
。
これは可能ですか?
素朴であること - あなたは文字列を持っていると言います(つまり、列ではありません)。
declare @astring nvarchar(max);
set @astring = '189 A 190 Merit 191 68.6';
次の 2 つのステートメントは、190 と 191 の間の部分を取り除きます。
set @astring = stuff(@astring,1,patindex('%190%',@astring)+2,'');
set @astring = stuff(@astring,patindex('%191%',@astring+'191'),len(@astring),'');
set @astring = LTRIM(RTRIM(@astring));
select @astring; -- 'Merit'
テーブル列を意味していた場合、
declare @t table (astring nvarchar(max));
insert @t select
'189 A 190 Merit 191 68.6' union all select
'189 A 19 Merit 191 68.6 oops bad string' union all select
'' union all select -- make sure it doesn't crash on empty string
null union all select -- ditto null
'189 C 190 Pass 191 50.1';
select astring, s2=stuff(s1,patindex('%191%',s1+'191'),len(s1),'')
from
(
select astring, s1=stuff(astring,1,patindex('%190%',astring+'190')+2,'')
from @t
) x
-- result
ASTRING S2
189 A 190 Merit 191 68.6 Merit
189 A 19 Merit 191 68.6 oops bad string (null)
(null)
(null) (null)
189 C 190 Pass 191 50.1 Pass