这是在 sql server 中创建的一个函数,它将 x 和 y 列作为输入并返回所需的输出
create function remove_char(@x_string varchar(500),@y_string varchar(500))
returns varchar(500)
as
begin
declare @Y table(autoid int identity,c char(1))
declare @i int=1;declare @c char(1);
while(LEN(@y_string)>=@i)
begin
select @c=substring(@y_string,@i,1);
Insert into @Y values(@c)
select @i=@i+1
end
declare @X table(autoid int identity,c char(1))
set @i=1;
while(LEN(@x_string)>=@i)
begin
select @c=substring(@x_string,@i,1);
Insert into @X values(@c)
select @i=@i+1
end
return( select STUFF(( select ''+c from @Y
where c in (select c from @X) order by autoid
FOR XML PATH('')),1,0,'') )
end
例子
select dbo.remove_char('AMDNO','AMNOXYZ')
您可以使用此功能来更新您的表格
update <table> set y=dbo.remove_char(x,y)