mssql使用输出参数的存储过程
mssql使用输出参数的存储过程实例如下:
create proc proc_test (
@test1 int output
)
as
print @test1
set @test1=1
print @test1
go
declare @test1 int
set @test1=456
exec proc_test @test1 output
结果:456
1
转载请注明原文地址: https://ibbs.8miu.com/read-2207622.html