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.
16 lines
599 B
SQL
16 lines
599 B
SQL
create table tb_group
|
|
(
|
|
GROUP_ID varchar(20) not null comment '그룹 ID'
|
|
primary key,
|
|
GROUP_NM varchar(100) not null comment '그룹 이름',
|
|
GROUP_DC varchar(200) null comment '그룹 설명',
|
|
SORT_ORDR int default 0 null comment '정렬 순서',
|
|
USE_YN varchar(1) not null comment '사용 여부',
|
|
REG_DTTM datetime null comment '등록 일시',
|
|
RGTR varchar(20) null comment '등록자',
|
|
MDFCN_DTTM datetime null comment '수정 일시',
|
|
MDFR varchar(20) null comment '수정자'
|
|
)
|
|
comment '그룹';
|
|
|