码迷,mamicode.com
首页 > 数据库 > 详细

MySQL部分索引

时间:2018-06-05 00:37:24      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:隐式   ble   TE   delete   char   部分   str   statistic   索引   

部分索引

char/varchar2太长,全部做索引的话,效率低,浪费存储空间

select avg(length(username)) from 

索引统计:

  • show index from table
  • select * from I_S.STATISTICS
  • mysql.innodb_index_stats

MySQL5.7索引利用率:

select index_name,rows_selected,rows_updated,rows_deleted from schema_index_statistics where table_schema=‘scott‘ and table_name=‘emp‘;

查看冗余索引:schema_redundant_indexes

索引隐式转换:

select * from t1 where user=123; 不会利用user列的索引,首先将user转换成assic码

MySQL部分索引

标签:隐式   ble   TE   delete   char   部分   str   statistic   索引   

原文地址:https://www.cnblogs.com/elontian/p/9136479.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!