Mysql常用命令锦集
更新:HHH   时间:2023-1-7


1、统计指定数据库中的表的行数:

use information_schema;
select table_name,table_rows from tables where TABLE_SCHEMA = 'databasename' order by table_rows desc;

返回MySQL数据库教程...