【MySQL】MySQL查询数据库各表的行数

#倒序查询数据库【各表记录数】
use information_schema;
select table_name,table_rows from tables where TABLE_SCHEMA = '数据库名' order by 
table_rows desc;
相关文章
相关标签/搜索