mysql> select table_name, table_rows from information_schema.tables where TABLE_SCHEMA = 'xcdqm'; ...
select table name,table rows from information schema.tables where TABLE SCHEMA 库名 order by table rows desc ...
2020-05-09 14:35 0 2701 推荐指数:
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_tables t ORDER BY NUM_ROWS DESC; 还可以直接查看dblink ...
...
查看dblink的:select t.table_name,t.num_rows from user_t ...
select t.table_name,t.num_rows from user_tables t ORDER BY NUM_ROWS DESC; 还可以直接查看dblink的:select t.table_name,t.num_rows from ...
关系型数据库 MongoDB ...