📌  相关文章
📜  通过执行存储过程设置值 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:02.184000             🧑  作者: Mango

代码示例1
// Call to the stored procedure, with an OUTPUT parameter
DECLARE @OutputParameter  datetime
       ,@ReturnValue      int

EXEC @ReturnValue= [YourStoredProcedure] [comma separated parameters if any] @OutputParameter OUTPUT
PRINT(@ReturnValue)