可以使用以下SQL语句来查看MySQL中所有表的大小:
SELECT
table_name AS `Table`,
round(((data_length + index_length) / 1024 / 1024), 2) `Size (MB)`
FROM
information_schema.TABLES
WHERE
table_schema = 'your_database_name'
ORDER BY
(data_length + index_length) DESC;
将上面的your_database_name
替换为你要查询的数据库的名称,并执行以上SQL语句,即可查看该数据库中所有表的大小,以MB为单位。