我已创建此存储过程
p { border: 1px solid grey; padding: .5em; }
.highlight {
background: yellow;
padding: .25rem;
border-radius: 1em .5em .75em 0.25em;
}
当我执行以下操作时,我没有得到我期望的结果(成功/失败)而是给我输出我将结果1声明为。
<div>
Type in the text area below. Use the words <code>foo</code>, <code>bar</code> or <code>baz</code> to trigger a link insertion.</div>
<p contenteditable>
Lorem ipsum dolor
</p>
答案 0 :(得分:3)
在execute AddNewMaterialType4
来电中,您必须明确声明@result1
是output
变量。试试这个:
declare
@result1 varchar(15) = '1';
begin
execute AddNewMaterialType4 @category = 'Beef', @materialtYPE = '25 Trim', @userID = 'JJ', @result1 = @result1 output;
print @result1;
end;