侧边栏壁纸
博主头像
cn2linux博主等级

行动起来,活在当下

  • 累计撰写 127 篇文章
  • 累计创建 1 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

MySQL: 统计索引碎片

统计排名前十个索引碎片

select
  table_schema AS db,
  table_name,
  data_free,
  engine
from
  information_schema.tables
where
  table_schema not in ('information_schema', 'mysql')
  and data_free > 0 order by data_free desc
LIMIT
  10;

0
  • ${post.likes!0}

评论区