GSI


use fastDectionTest
go

set nocount on

-- 테이블을 지웁니다.
drop table tb_double

-- 테이블을 생성합니다.
cteate table tb_double
(
id int identity,
ph int null
)

-- 테이블을 하나 추가해봅니다.
insert tb_double(ph) values(30)
Posted by gsi
: