Jika Anda menggunakan RETURN di proc
DECLARE @count int
EXECUTE @count = dbo.usp_GetCount @Id=123
Parameter KELUARAN
DECLARE @count int
EXECUTE dbo.usp_GetCount @Id=123, @count OUTPUT
Arahkan ulang hasil ke tabel/variabel tabel temp
DECLARE @count int
DECLARE @cache TABLE (CountCol int NOT NULL)
INSERT @cache EXECUTE dbo.usp_GetCount @Id=123
SELECT @count = CountCol FROM @cache
Anda tidak dapat menetapkan recordset dari proc yang disimpan secara langsung ke variabel skalar