Mysql 自增列 主键

时间:2022-06-04 10:53:52

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