mysql 查看數據庫表數據量大小

查看某個數據庫下每張表的數據量大小數據庫 use information_schema; select table_name,table_rows from tables  where TABLE_SCHEMA = '數據庫名字'  order by table_rows desc;orm
相關文章
相關標籤/搜索