我希望使用 SQL“拆分”功能:
alter FUNCTION [dbo].[Split3] (@String nvarchar(1000), @Delimiter char(1))
returns @temptable TABLE (items nvarchar(1000))
as
begin
declare @idx int
declare @slice nvarchar(1000)
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
Select * from dbo.Split3 ((Select eqipproc from equipmast where eqcode = 'EQL0000004'),';')
错误
服务器:消息 170,级别 15,状态 1,第 1 行第 1 行:'(' 附近的语法不正确。服务器:消息 170,级别 15,状态 1,第 1 行第 1 行:','附近的语法不正确。