数据库 查询数据库每个表数据量 2020年2月19日 coodi8 use `information_schema`; select table_name,table_rows from tables where TABLE_SCHEMA = ‘db_sdk’ order by table_rows desc;