标签:tab key 创建 uniq 主键索引 ima str table lte
应用于表创建完毕之后再添加
ALTER TABLE 表名 ADD 索引类型 (unique,primary key,fulltext,index)[索引名](字段名);
-- 普通索引 alter table table_name add index index_name (column_list) ; -- 唯一索引 alter table table_name add unique (column_list) ; -- 主键索引 alter table table_name add primary key (column_list) ;
标签:tab key 创建 uniq 主键索引 ima str table lte
原文地址:https://www.cnblogs.com/jvjs/p/10560823.html