MySQL索引及优化

MySQL索引及优化 索引分类 惟一索引 强调惟一,就是索引值必须惟一,关键字unique index 建立索引:php 一、create unique index 索引名 on 表名(列名); 二、alter table 表名 add unique index 索引名 (列名);mysql 删除索引:web 一、 drop index 索引名 on 表名; 二、 alter table 表名 d
相关文章
相关标签/搜索