代码之家  ›  专栏  ›  技术社区  ›  nonopolarity

使用MySQL,是否有任何方法可以转储数据库中所有200个表中的每个表的记录数?

  •  0
  • nonopolarity  · 技术社区  · 14 年前

    假设有一个数据库有200个表,是否有一个快速的方法来查看每个表中有多少记录(如果可能的话)是按记录的数量降序排序的?

    2 回复  |  直到 7 年前
        1
  •  2
  •   Mark Baker    14 年前
    SELECT table_name,
           table_rows
      FROM `information_schema`.`tables`
     WHERE table_schema = '<Your Database Name>'
     ORDER BY table_rows DESC
    
        2
  •  2
  •   Rob Di Marco    14 年前

    show table status 为你的问题工作?它有行数吗?