SQL Server 在一个存储过程中调用另外一个存储过程获取返回值,出现报错

日期:2016-08-07 13:10:03 人气:2

SQL Server 在一个存储过程中调用另外一个存储过程获取返回值,出现报错

第一种方法: 使用output参数 USE AdventureWorks; GO IF OBJECT_ID ( 'Production.usp_GetList', 'P' ) IS NOT NULL DROP PROCEDURE Production.usp_GetList; GO CREATE PROCEDURE Production.usp_GetList @product varchar(40) , @maxprice money
    A+
热门评论