mysql性能優化-索引

1.查詢索引的幾種方式 (1)desc 表名(缺點是:不能夠顯示索引名) (2)show index from 表名 (3)show keys from 表名 2.添加主鍵索引 指定爲主鍵就爲其添加索引了,當然也可以創建表後,指定主鍵索引 alter table 表名 add primary key 3.添加普通索引 create index 索引名 on 表名(列)   建表時其中有key 'i
相關文章
相關標籤/搜索