Mysql 自增列 主键
Posted iDEAAM 爱地爱木
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 );
以上是关于Mysql 自增列 主键的主要内容,如果未能解决你的问题,请参考以下文章