mysql 查看数据库表数据量大小

查看某个数据库下每张表的数据量大小数据库 use information_schema; select table_name,table_rows from tables  where TABLE_SCHEMA = '数据库名字'  order by table_rows desc;orm
相关文章
相关标签/搜索