1.mysql的information_schema下有存储数据库基本信息的数据字典表,可以通过查询tables表来获得
所需要的表相关信息。
 mysql> show databases;

wKiom1fiNPnzxLkrAAAeFr9AE7s847.png-wh_50

2. use  information_schema;

wKiom1fiNUfDTC7cAAAOErCoWpQ067.png-wh_50

3. show tables;

wKioL1fiNW_ROVVcAAAkg2MMGy0913.png-wh_50

4. desc tables;

wKiom1fiNZ7hjrbxAAAqmSqILJg015.png-wh_50

5 select table_name,table_rows from  tables order by table_rows desc limi 10;