mysql 查看某个数据库中所有表的数据量

1、登录mysql

2、使用命令:use information_schema;

3、使用命令:select table_name,table_rows from tables where TABLE_SCHEMA = 'emphant' order by table_rows desc;

猜你喜欢

转载自www.cnblogs.com/dingjiaoyang/p/9970610.html