可以使用以下命令查看MySQL数据库大小:
SELECT table_schema AS "Database", ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS "Size (MB)" FROM information_schema.tables GROUP BY table_schema;
这条命令会返回每个数据库的大小(以MB为单位)。