Table of Contents
SQL Server 프로시저 호출법
declare @rettotcount int;
exec usp_test '2022-01-01', '2024-12-01', -1, 'skyer9', @rettotcount = @rettotcount output;
select @rettotcount;
declare @rettotcount int;
exec usp_test '2022-01-01', '2024-12-01', -1, 'skyer9', @rettotcount = @rettotcount output;
select @rettotcount;