标签:blog http io ar sp strong on 2014 log
在SQL Server 不只是procedure 可以用execute 来执行 function 也是可以的
例子:
create function ufn_A( @i as int)
returns int
begin
return @i+1;
end
go
declare @ii as int;
execute @ii = ufn_A @i =3;
print @ii;
go
标签:blog http io ar sp strong on 2014 log
原文地址:http://www.cnblogs.com/JiangLe/p/4064164.html