通过下面的SQL语句可以统计出数据库的各个表中的记录数:select table_schema, table_name,table_rowsfrom information_schema.tableswhere table_schema='数据库名';