@CountryLocationIDsと@LocationIDsとして値を持つ2つの文字列があります。
@CountryLocationIDs = 400,600,150,850,160,250
@LocationIDs1 = 600,150,900
次に、次のような別の変数の出力が必要です。
@LocationIDs = 400,600,150,850,160,250,900
誰か助けてください...よろしくお願いします...
@CountryLocationIDsと@LocationIDsとして値を持つ2つの文字列があります。
@CountryLocationIDs = 400,600,150,850,160,250
@LocationIDs1 = 600,150,900
次に、次のような別の変数の出力が必要です。
@LocationIDs = 400,600,150,850,160,250,900
誰か助けてください...よろしくお願いします...
また、動的管理機能sys.dm_fts_parser
でオプションを使用できます
。スクリプトを実行する前に、フルテキストコンポーネントがインストールされていることを確認する必要があります。
SELECT FULLTEXTSERVICEPROPERTY ('IsFulltextInstalled')
0=フルテキストはインストールされていません。1=フルテキストがインストールされています。NULL =無効な入力、またはエラー。
0 =フルテキストがインストールされていない場合は、この投稿が必要です。SQLServer 2008にフルテキストをインストールする方法は?
DECLARE @CountryLocationIDs nvarchar(100) = '400,600,150,850,160,250',
@LocationIDs1 nvarchar(100) = '600,150,900',
@LocationIDs nvarchar(100) = N''
SELECT @LocationIDs += display_term + ','
FROM sys.dm_fts_parser('"'+ 'nn,' + @CountryLocationIDs + ',' + @LocationIDs1 + '"', 1033, NULL, 0)
WHERE display_term NOT LIKE 'nn%'
GROUP BY display_term
SELECT LEFT(@LocationIDs, LEN(@LocationIDs) - 1)
2 つのパラメーターを受け入れるテーブル値関数を作成しました。1 つ目は ID を持つ文字列で、2 つ目は文字列の区切り文字です。
CREATE FUNCTION [dbo].[Split](@String nvarchar(4000), @Delimiter char(1))
returns @temptable TABLE (items nvarchar(4000))
as
begin
declare @idx int
declare @slice nvarchar(4000)
select @idx = 1
if len(@String)<1 or @String is null return
while @idx!= 0
begin
set @idx = charindex(@Delimiter,@String)
if @idx!=0
set @slice = left(@String,@idx - 1)
else
set @slice = @String
if(len(@slice)>0)
insert into @temptable(Items) values(@slice)
set @String = right(@String,len(@String) - @idx)
if len(@String) = 0 break
end
return
end
関数を作成した後、次のUNION
方法で set 演算子を使用します。
編集済み
WITH ListCTE AS
(
select items from dbo.split('400,600,150,850,160,250', ',')
union
select items from dbo.split('600,150,900', ',')
)
SELECT TOP 1
MemberList = substring((SELECT ( ', ' + items )
FROM ListCTE t2
ORDER BY
items
FOR XML PATH( '' )
), 3, 1000 )FROM ListCTE t1
両方の文字列から自動的に異なる値を取得するため、句UNION
を使用する必要はありませんDISTINCT