一个字符串为“1;2;1;1;1”。
请问:
如何在SQL SERVER中实现如下功能:
1、判断该字符串中是否存在重复的数字
如果存在重复的数字,返回错误信息
如果不存在重复的数字,返回正确。
思路:分割字符串,将子字符串存入临时表,在临时表进行分组判断
create function RepeatString(@input varchar(8000),@separator varchar(10)) returns int as begin declare @temp table(part varchar(100)) declare @i int ,@result int set @input=rtrim(ltrim(@input)) set @i=charindex(@separator,@input) while @i>=1 begin insert @temp values(left(@input,@i-1)) set @input=substring(@input,@i+1,len(@input)[email protected]) set @i=charindex(@separator,@input) end if exists(select part,count(*) from @temp group by part having count(*)>1) set @result=1 --存在重复 else set @result=0 --不存在重复 return @result end go
--测试
select dbo.RepeatString('1,1,2,3,1',',') --1 select dbo.RepeatString('1,2,3,4,5',',') --0
时间: 2024-11-15 19:12:43