你可以使用以下SQL語句來查詢所有表的數據量:
SELECT
table_name AS `Table Name`,
table_rows AS `Number of Rows`
FROM
information_schema.tables
WHERE
table_schema = 'your_database_name'
ORDER BY
table_rows DESC;
請將your_database_name
替換為實際數據庫的名稱。這條SQL語句會返回所有表的名稱和數據量,按照數據量從大到小排序。