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.
VIPS/DB/DDL/vips/tb_sgg_cd.sql

13 lines
511 B
SQL

-- auto-generated definition
create table tb_sgg_cd
(
SGG_CD varchar(5) not null comment '시군구 코드'
primary key,
SGG_NM varchar(75) null comment '시군구 명',
REG_DT datetime null comment '등록 일시',
RGTR varchar(11) null comment '등록자',
DEL_YN char default 'N' null comment '삭제 여부',
DEL_DT datetime null comment '삭제 일시',
DLTR varchar(11) null comment '삭제자'
)
comment '시군구 코드';