作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个存储过程:
ALTER PROCEDURE spCertificationType
@result nvarchar(15) output,
@mode int
AS
BEGIN
if @mode = 1
begin
exec spGeneratedID 2, @result output
print @result
end
END
The formal parameter “@mode” was not declared as an OUTPUT parameter, but the actual parameter passed in requested output.
@mode
作为这样的输出:
ALTER PROCEDURE spCertificationType
@result nvarchar(15) output,
@mode int output
AS
BEGIN
if @mode = 1
begin
exec spGeneratedID 2, @result output
print @result
end
END
最佳答案
存储过程中的参数顺序是先使用输入参数,然后使用输出参数:-
您可以查看此链接以获取有关存储过程的更多知识:-
http://www.codeproject.com/Articles/126898/Sql-Server-How-To-Write-a-Stored-Procedure-in-SQL
ALTER PROCEDURE spCertificationType
@mode int,
@result nvarchar(15) output
AS
BEGIN
if @mode = 1
begin
exec spGeneratedID 2, @result output
print @result
end
END
关于sql - 形参 “@mode” 未声明为 OUTPUT 参数,而是在请求的输出中传递的实参,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32219733/
我是一名优秀的程序员,十分优秀!