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.
40 lines
2.6 KiB
SQL
40 lines
2.6 KiB
SQL
create table tb_crdn
|
|
(
|
|
CRDN_YR char(4) not null comment '단속 연도',
|
|
CRDN_NO varchar(6) not null comment '단속 번호',
|
|
SGG_CD varchar(5) null comment '시군구 코드',
|
|
RGN_SE_CD char not null comment '지역 구분 코드',
|
|
DSCL_MTHD_CD varchar(2) not null comment '적발 방법 코드',
|
|
DSCL_YMD char(8) null comment '적발 일자',
|
|
EXMNR varchar(100) null comment '조사원',
|
|
RMRK varchar(1000) null comment '비고',
|
|
DSPS_BFHD_BGNG_YMD varchar(8) null comment '처분 사전 시작 일자',
|
|
DSPS_BFHD_END_YMD varchar(8) null comment '처분 사전 종료 일자',
|
|
CRC_CMD_BGNG_YMD varchar(8) null comment '시정 명령 시작 일자',
|
|
CRC_CMD_END_YMD varchar(8) null comment '시정 명령 종료 일자',
|
|
CRC_URG_BGNG_YMD varchar(8) null comment '시정 촉구 시작 일자',
|
|
CRC_URG_END_YMD varchar(8) null comment '시정 촉구 종료 일자',
|
|
LEVY_PRVNTC_BGNG_YMD varchar(8) null comment '부과 예고 시작 일자',
|
|
LEVY_PRVNTC_END_YMD varchar(8) null comment '부과 예고 종료 일자',
|
|
LEVY_BGNG_YMD varchar(8) null comment '부과 시작 일자',
|
|
LEVY_END_YMD varchar(8) null comment '부과 종료 일자',
|
|
PAY_URG_BGNG_YMD varchar(8) null comment '납부 촉구 시작 일자',
|
|
PAY_URG_END_YMD varchar(8) null comment '납부 촉구 종료 일자',
|
|
FRST_CRDN_YR varchar(4) null comment '최초 단속 연도',
|
|
FRST_CRDN_NO varchar(6) null comment '최초 단속 번호',
|
|
RELEVY_TRGT_CRDN_YR varchar(4) null comment '재부과 대상 단속 연도',
|
|
RELEVY_TRGT_CRDN_NO varchar(6) null comment '재부과 대상 단속 번호',
|
|
AGRVTN_LEVY_TRGT_YN char not null comment '가중 부과 대상 여부',
|
|
RELEVY_YN char not null comment '재부과 여부',
|
|
CRDN_PRCS_STTS_CD varchar(2) null comment '단속 처리 상태 코드',
|
|
CRDN_PRCS_YMD varchar(8) null comment '단속 처리 일자',
|
|
REG_DT datetime null comment '등록 일시',
|
|
RGTR varchar(11) null comment '등록자',
|
|
DEL_YN char not null comment '삭제 여부',
|
|
DEL_DT datetime null comment '삭제 일시',
|
|
DLTR varchar(11) null comment '삭제자',
|
|
primary key (CRDN_YR, CRDN_NO)
|
|
)
|
|
comment '단속';
|
|
|