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.
18 lines
915 B
SQL
18 lines
915 B
SQL
create table tb_pstn_idx
|
|
(
|
|
PSTN_IDX_NO varchar(2) not null comment '위치 지수 번호'
|
|
primary key,
|
|
BLDG_ANX_LAND_BGNG_PRC decimal null comment '건물 부속 토지 시작 가격',
|
|
BLDG_ANX_LAND_END_PRC decimal null comment '건물 부속 토지 종료 가격',
|
|
PSTN_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 '삭제자'
|
|
)
|
|
comment '위치 지수';
|
|
|