码迷,mamicode.com
首页 > 数据库 > 详细

Mysql 自增列 主键

时间:2016-03-31 12:38:56      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

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
);

  

Mysql 自增列 主键

标签:

原文地址:http://www.cnblogs.com/haoliansheng/p/5340610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!