mssql使用输出参数的存储过程

    技术2022-05-19  25

    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


    最新回复(0)