记录点滴技术
#按数据表记录数量倒序显示某库所有表的记录数 SELECT table_rows,table_name FROM information_schema.tables WHERE TABLE_SCHEMA = '数据库名' ORDER BY table_rows DESC;