我想做以下事情.基本上有一个存储过程调用另一个返回表的存储过程.这怎么做?
ALTER PROC [GETSomeStuff] AS BEGIN @table = exec CB_GetLedgerView @accountId,@fromDate,@toDate,@pageSize,@pageNumber,@filter,@status,@sortExpression,@sortOrder,@virtualCount OUTPUT Select * from @table --Do some other stuff here END
解决方法
存储过程的目标必须是临时表或实际表,以便您可以
Insert into #table exec CB_GetLedgerView @accountId,@virtualCount OUTPUT
如果存储过程的输出结果集与目标表中的行的顺序位置和计数不匹配,请指定列列表.