SQL Server 프로시저 호출법

By | 2024년 11월 4일
Table of Contents

SQL Server 프로시저 호출법

declare @rettotcount int;
exec usp_test '2022-01-01', '2024-12-01', -1, 'skyer9', @rettotcount = @rettotcount output;
select @rettotcount;

답글 남기기