唯一索引(unique index)强调唯一,就是索引值必须唯一. create unique index [索引名] on 表名 (列名);alter table 表名 add unique index [索引名] (列名);删除索引:drop index 索引名 on 表名;alter table 表名 drop index 索引名; 主键主键是一种特殊的唯一索引,主键要求建表时指定,一般用auto_increment列,关键字是primary key creat table test2 (…