11 2019 档案
MySQL查看数据库中所有表占用的空间大小
摘要:select 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 = '数据库名称 阅读全文
posted @ 2019-11-21 17:58 菜霸