GSI


use kss25
go

declare @tablecount nvarchar(100) -- 변수 선언
set @tablecount = ''  -- 변수 초기화

-- 이 쿼리를 통해서 변수에 담는다.
select @tablecount =
(
 select count(*) from tbl_rep_btinfo
)
 
 print @tablecount -- 정보를 출력해 본다.

select * from tbl_kss_kicbo -- 정보를 파악한다.

Posted by gsi
: