1.每张表大概的数据量的查询方法
select table_name,table_rows from information_schema.tables where TABLE_SCHEMA='数据库名称' order by table_rows desc;
2.具体某张表的数据量查询方法
select count(*) from database_name.table_name;
标签:name,每张,数据量,mysql,table,select
From: https://www.cnblogs.com/xinsheng-0415/p/16731990.html