数据库mysql 查询每个表分别有多少条记录 云博小周宇2024年5月5日2023年8月15日1 Min Read use information_schema; select table_name,table_rows from tables where TABLE_SCHEMA = ‘数据库的名称‘ order by table_rows desc;