mysql 查看库表数量,库空间大小


select 
  count(TABLE_NAME),

  concat(truncate(data_length/1024/1024,2),' MB') as data_size,
  concat(truncate(index_length/1024/1024,2),' MB') as index_size
from information_schema.tables where TABLE_SCHEMA = 'TestDB'

原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/tech/database/267226.html

(0)
上一篇 2022年6月14日 22:07
下一篇 2022年6月14日 22:07

相关推荐

发表回复

登录后才能评论