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
521 B
SQL
15 lines
521 B
SQL
create table tb_exmnr
|
|
(
|
|
EXMNR_ID varchar(10) not null comment '조사원 ID'
|
|
primary key,
|
|
SGG_CD varchar(5) not 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 '삭제자',
|
|
EXMNR varchar(100) null comment '조사원'
|
|
)
|
|
comment '조사원';
|
|
|