create table tb_crdn_file ( FILE_ID varchar(20) not null comment '파일 ID' primary key, CRDN_YR char(4) null comment '단속 연도', CRDN_NO varchar(6) null comment '단속 번호', ORIGINAL_FILE_NM varchar(200) not null comment '원본 파일명', STORED_FILE_NM varchar(200) not null comment '저장 파일명', FILE_PATH varchar(200) not null comment '파일 경로', FILE_SIZE bigint not null comment '파일 크기', FILE_EXT varchar(10) not null comment '파일 확장자', REG_DTTM datetime null comment '등록 일시', RGTR varchar(20) null comment '등록자' ) comment '단속관련 파일 파일';