2020年12月3日
摘要: alter table 表名 add primary key (id); //主键索引 alter table 表名 add unique key [索引名称] (字段); // 唯一索引 alter table 表名 add key [索引名称] (字段); // 普通索引 alter table 阅读全文
posted @ 2020-12-03 10:36 kevin_yang123 阅读(339) 评论(0) 推荐(0) 编辑