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
As usual many ways to do this but the easiest is:
DECLARE @count int Execute @count = dbo.usp_GetCount @Id=123