You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
817 B
SQL

create table tb_usg_idx
(
USG_IDX_CD varchar(5) not null comment '용도 지수 코드'
primary key,
USG_NM varchar(300) null comment '용도 명',
USG_IDX decimal(10, 2) null comment '용도 지수',
MAIN_USG_NM varchar(100) null comment '주요 용도 명',
LWR_USG_NM varchar(100) null comment '하위 용도 명',
REG_DT datetime null comment '등록 일시',
RGTR varchar(11) null comment '등록자',
MDFCN_DT datetime null comment '수정 일시',
MDFR varchar(11) null comment '수정자',
DEL_YN char not null comment '삭제 여부',
DEL_DT datetime null comment '삭제 일시',
DLTR varchar(11) null comment '삭제자'
)
comment '용도 지수';