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

mysql 统计索引执行情况

时间:2019-11-03 22:19:09      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:coder   执行   http   form   sch   dex   from   man   ble   

select distinct b.TABLE_SCHEMA,b.TABLE_NAME , b.INDEX_NAME , a.count_star
from performance_schema.table_io_waits_summary_by_index_usage a ,
INFORMATION_SCHEMA.STATISTICS b
where a.OBJECT_SCHEMA = b.TABLE_SCHEMA and a.INDEX_NAME = b.INDEX_NAME
and a.OBJECT_NAME=b.TABLE_NAME and a.OBJECT_SCHEMA =b.INDEX_SCHEMA
and b.CARDINALITY > 0
and b.TABLE_NAME = ‘wu_user‘;

 

http://codercoder.cn/index.php/2019/09/mysql-index-statistic-info/

mysql 统计索引执行情况

标签:coder   执行   http   form   sch   dex   from   man   ble   

原文地址:https://www.cnblogs.com/newlangwen/p/11789310.html

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