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.
23 lines
1.4 KiB
SQL
23 lines
1.4 KiB
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 '구조 지수',
|
|
RDVLRT_CN_YR_CNT decimal(2) null comment '잔가율 내용 연도 수',
|
|
LAST_YR_RDVLRT decimal(4, 2) null comment '최종 연도 잔가율',
|
|
DPRT decimal(4, 4) null comment '감가상각률',
|
|
BSCS_CSTRN_Y_BDST_CMPTTN_RT decimal(10, 2) null comment '기초 공사 Y 건축물 산정 비율',
|
|
BSCS_CSTRN_N_BDST_CMPTTN_RT decimal(10, 2) null comment '기초 공사 N 건축물 산정 비율',
|
|
DUP_ETBLDG_BDST_CMPTTN_RT 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 '삭제자'
|
|
)
|
|
comment '구조 지수';
|
|
|