MySql教程

MySQL进阶-查询数据库的数据大小

本文主要是介绍MySQL进阶-查询数据库的数据大小,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

select
  eoswind as '数据库',

  tds_stg_fact_wtg_10m as '表名',

  table_rows as '记录数',

  truncate(data_length/1024/1024, 2) as '数据容量(MB)',

  truncate(index_length/1024/1024, 2) as '索引容量(MB)'

from information_schema.tables
where table_schema= 'eoswind'
  and table_name='tds_stg_fact_wtg_10m'

order by data_length desc, index_length desc;

这篇关于MySQL进阶-查询数据库的数据大小的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!