Mysql 自增列 主键

Mysql中假如有

ID Int auto_increment, CID varchar(36).

通常情况下都是 ID设置为主键。

假如要设置CID为主键。自增列ID必需是唯一索引。

create table Temp
(
   ID                   bigint not null auto_increment comment '编号',
   CID               varchar(36) not null,
   CreateTime           datetime not null default now() comment '创建时间',
   unique(ID),  --唯一索引
  primary key (CID) --主键
);
create index Index_CreateTime on TEMP --聚集索引
(
   CreateTime
);

  

posted @ 2016-03-31 11:52  iDEAAM  阅读(1400)  评论(0编辑  收藏  举报