I have a stored procedure that I am trying to test.
(我有一个要测试的存储过程。)
I am trying to test it through SQL Management Studio.(我正在尝试通过SQL Management Studio进行测试。)
In order to run this test I enter ...(为了运行此测试,我输入...)
exec my_stored_procedure 'param1Value', 'param2Value'
The final parameter is an output parameter
.
(最终参数是output parameter
。)
(但是,我不知道如何使用输出参数测试存储过程。)
How do I run a stored procedure with an output parameter?
(如何运行带有输出参数的存储过程?)
ask by user70192 translate from so