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
733 B
SQL

create table tb_vltn_lwrg
(
VLTN_LWRG_CD varchar(3) not null comment '위반 법규 코드'
primary key,
VLTN_LAW varchar(100) null comment '위반 법',
CRC_LAW varchar(100) null comment '시정 법',
IMPLT_LAW varchar(100) 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 '위반 법규';