sql 存储过程 传入两组数组参数 10
execsq_ccgc'1,2,3','a,a,a'执行上面的存储过程,如何将两个参数的值,存入存储过程中虚表#tb(id1int,id2int)...
exec sq_ccgc '1,2,3','a,a,a'
执行上面的存储过程,如何将两个参数的值,存入存储过程中虚表#tb (id1 int,id2 int) 展开
执行上面的存储过程,如何将两个参数的值,存入存储过程中虚表#tb (id1 int,id2 int) 展开
1个回答
展开全部
declare @n nvarchar(500)
declare @m nvarchar(500)
set @n='1,2,3,4,5'
set @m='a,b,c,d,e'
create table #tb (n VARCHAR(500),m VARCHAR(500))
while(1=1)
begin
if(Charindex(',',@n)=0 and Charindex(',',@m)=0)
begin
insert into #tb values(@n,@m)
break
end
insert into #tb values(Substring(@n,1,Charindex(',',@n)-1),Substring(@m,1,Charindex(',',@m)-1))
set @n=Right(@n,Len(@n)-Charindex(',',@n))
set @m=Right(@m,Len(@m)-Charindex(',',@m))
end
select * from #tb
drop table #tb
ps:要做好校验!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询