set @var = exec stored_procedure

前端 未结 3 1310
深忆病人
深忆病人 2020-12-14 11:23

Is it possible to assign at variable a value returned from exec stored procedure?

Something like

DECLARE @count int
SET @count = Execute dbo.usp_GetC         


        
3条回答
  •  长情又很酷
    2020-12-14 11:28

    As usual many ways to do this but the easiest is:

    DECLARE @count int
    
    Execute @count =  dbo.usp_GetCount @Id=123
    

提交回复
热议问题