MySQL 查詢所有表中的記錄數

衣舞晨風發表於2017-03-19

比如查詢資料庫lts中所有表的記錄數:

USE information_schema;
SELECT
    table_name,
    table_rows
FROM
    TABLES
WHERE
    TABLE_SCHEMA = 'lts'
ORDER BY
    table_rows DESC;

效果如下:
這裡寫圖片描述

作者:jiankunking 出處:http://blog.csdn.net/jiankunking

相關文章