执行带返回值的存储过程
Posted zhuyapeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了执行带返回值的存储过程相关的知识,希望对你有一定的参考价值。
记录下执行带返回值的存储过程
1.定义变量接收返回值@out
[email protected]_product_catalogID = @out 定义返回值用@out接受,标记output
GO
--带返回值的存储过程执行
DECLARE @out INT
EXECUTE dbo.tb_product_catalog_INSERT @name = N‘测试‘, -- nvarchar(100)
@brand_id = 0, -- int
@parent_id = 0, -- int
@custid = 0, -- int
@sort = 0, -- int
@manufacturer_id = 0, -- int
@tb_product_catalogID = @out OUTPUT-- int
PRINT @out
GO
--查看存储过程
sp_helptext tb_product_catalog_INSERT
GO
以上是关于执行带返回值的存储过程的主要内容,如果未能解决你的问题,请参考以下文章