'unique'에 해당되는 글 1건

  1. 2020.06.06 mysql create 기본형

create table if not exists character
(
    `idx` bigint(16) PRIMARY KEY AUTO_INCREMENT ,
    `group` varchar(64) not null,
    `key` varchar(64) not null,
    `name` varchar(64) not null comment "해당 캐릭터의 이름",
    `skill` varchar(64) not null commnet "해당 캐릭터가 가진 스킬",

    unique key ( `group`, `key` )
);

'프로그램 > 코드 기본형' 카테고리의 다른 글

php class 기본형  (0) 2020.06.06
mysql procedure 기본형  (0) 2020.06.06
Posted by 창업닉군
,