美文网首页
mysql 查看表数据条数

mysql 查看表数据条数

作者: 不爱吃饭的小孩怎么办 | 来源:发表于2019-12-18 09:07 被阅读0次

    使用count(*)去计算太慢了,因为schema已经记录了表大小,所以我们直接查询表信息就可以。

    mysql> show databases;
    mysql> use information_schema;
    mysql> select table_name,table_rows from TABLES where table_schema='xxxxx_data' order by table_rows desc;
    +---------------------+---------------------+
    | table_name        |   table_rows        |
    +--------------------+----------------------+
    ........
    

    相关文章

      网友评论

          本文标题:mysql 查看表数据条数

          本文链接:https://www.haomeiwen.com/subject/fzeynctx.html