查看mysql某個庫中所有表的數據量
mysql> select table_name, table_rows from information_schema.tables where TABLE_SCHEMA = 'xcdqm'; ...
mysql> select table_name, table_rows from information_schema.tables where TABLE_SCHEMA = 'xcdqm'; ...
1、登錄mysql 2、使用命令:use information_schema; 3、使用命令:select table_name,table_rows from tables where TABLE_SCHEMA = 'emphant' order by table_rows desc; ...
方法一: 方法二: ...
查詢數據庫中每張表的記錄條數 ...
源地址:http://blog.csdn.net/zhanggnol/article/details/6683697 select t.table_name,t.num_rows from user ...
select table_name,table_rows from information_schema.tables where TABLE_SCHEMA = '庫名' order by table_rows desc; ...
...
...