Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
抱歉问这个简单的问题,我是 T-SQL 新手
通过传递输入值并获取输出值来执行 T-SQL 存储过程的命令是什么?
比如说有 2 个变量,比如@id(输入)和@sal(输出)
@id
@sal
要求是通过id并获得薪水。那么我们需要这样执行吗?
EXEC USP_PROC1 89, 0
(我是否还需要传递输出变量的默认值)
当我执行它时,为什么我看不到任何答案?我只能看到Command(s) completed successfully。
Command(s) completed successfully
MSDN 是你的朋友。除了基本的语法布局之外,它还为您提供了大量示例。
这是另一个带有一些示例的站点。
EXEC USP_PROC1 89,0, @OutputValue OUTPUT