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.

20 lines
963 B
SQL

create table tb_strct_idx
(
STRCT_IDX_CD varchar(3) not null comment '구조 지수 코드'
primary key,
STRCT_NM varchar(100) null comment '구조 명',
STRCT_IDX decimal(10, 2) 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 '삭제자',
RDVLRT_CN_YR_CNT decimal(2) null comment '잔가율 내용 연도 수',
LAST_YR_RDVLRT decimal(4, 2) null comment '최종 연도 잔가율',
DPRT decimal(4, 4) null comment '감가상각률'
)
comment '구조 지수';