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.
17 lines
706 B
SQL
17 lines
706 B
SQL
create table tb_cmpttn_rt
|
|
(
|
|
CMPTTN_RT_CD varchar(3) not null comment '산정 률 코드'
|
|
primary key,
|
|
VLTN_BDST varchar(100) null comment '위반 건축물',
|
|
LAWLPRVS varchar(100) null comment '법조문',
|
|
CMPTTN_RT decimal(3) null comment '산정 률',
|
|
VLTN_BDST_DTL varchar(1000) null comment '위반 건축물 상세',
|
|
USE_YN char not null comment '사용 여부',
|
|
REG_DT datetime null comment '등록 일시',
|
|
RGTR varchar(11) null comment '등록자',
|
|
MDFCN_DT datetime null comment '수정 일시',
|
|
MDFR varchar(11) null comment '수정자'
|
|
)
|
|
comment '산정 률';
|
|
|