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) 展开
展开全部
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:要做好校验!
TableDI
2024-07-18 广告
2024-07-18 广告
在Excel中,使用`VLOOKUP`函数进行单一条件查找非常常见,但`VLOOKUP`本身并不直接支持双重条件。然而,你可以通过一些间接方法实现。一种方法是将两个条件合并为一个标识符(例如,通过连接或串联),然后在另一个区域中查找此标识符...
点击进入详情页
本回答由TableDI提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询