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)
展开
 我来答
百思卜得其解
2015-11-18 · TA获得超过122个赞
知道小有建树答主
回答量:132
采纳率:100%
帮助的人:54.3万
展开全部
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:要做好校验!

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式