切分字符 SqlServer切割字符串示例: --declare @StrDId nvarchar(2000) --set @StrDId='100,200,400,500,600' --转换ID,防止注入 CREATE TABLE #table_DId( ID INT) While(CHARINDEX(',',@StrDId)<>0) Begin Insert Into #table_DId(ID) Values(CONVERT(Int,Substring(@StrDId,1,CHARIND…