当前位置: 代码迷 >> Sql Server >> while里面不能执行存储过程该怎么调整
  详细解决方案

while里面不能执行存储过程该怎么调整

热度:10   发布时间:2016-04-27 12:00:32.0
while里面不能执行存储过程该如何调整
下面的红色部分写法不对,哪位大侠帮忙修改下

两个存储过程各返回1个int值

while

exec a = exec b

begin
select * from tb
end

------解决方案--------------------
SQL code
--給你個基礎例子if object_id('fn_a') is not null drop function dbo.fn_a;if object_id('proc_a') is not null drop procedure proc_a;if object_id('proc_test') is not null drop procedure proc_test;gocreate function dbo.fn_a()returns intasbegin  return 1endgocreate proc proc_a@t int outputasselect @t=1;gocreate proc proc_testasdeclare @a int;exec proc_a @a output;select @aif @a=dbo.fn_a()print 1else print 2;goexec proc_test;
------解决方案--------------------
判断两列内容完全一样吗?
不是你这么写的

还有你把整个过程都写到exec 里面就可以了
  相关解决方案