你可以使用以下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语句会返回所有表的名称和数据量,按照数据量从大到小排序。