यदि आप खरीद में रिटर्न का उपयोग करते हैं
DECLARE @count int
EXECUTE @count = dbo.usp_GetCount @Id=123
OUTPUT पैरामीटर
DECLARE @count int
EXECUTE dbo.usp_GetCount @Id=123, @count OUTPUT
परिणामों को अस्थायी तालिका/तालिका चर पर पुनर्निर्देशित करें
DECLARE @count int
DECLARE @cache TABLE (CountCol int NOT NULL)
INSERT @cache EXECUTE dbo.usp_GetCount @Id=123
SELECT @count = CountCol FROM @cache
आप संग्रहीत खरीद से सीधे एक अदिश चर को एक रिकॉर्डसेट असाइन नहीं कर सकते हैं