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.

15 lines
581 B
SQL

create table tb_cmpttn_rt_2
(
CMPTTN_RT_2_CD varchar(1) not null comment '산정 률 2 코드'
primary key,
VLTN_MTTR varchar(100) null comment '위반 사항',
CMPTTN_RT_2 decimal(3) null comment '산정 률 2',
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 '산정 률 2';