आप इस क्वेरी का उपयोग तालिका के आकार को दिखाने के लिए कर सकते हैं (हालाँकि आपको पहले वेरिएबल को स्थानापन्न करने की आवश्यकता है):
SELECT
table_name AS `Table`,
round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB`
FROM information_schema.TABLES
WHERE table_schema = "$DB_NAME"
AND table_name = "$TABLE_NAME";
या प्रत्येक डेटाबेस में प्रत्येक तालिका के आकार को सूचीबद्ध करने के लिए यह क्वेरी, सबसे पहले सबसे बड़ी:
SELECT
table_schema as `Database`,
table_name AS `Table`,
round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB`
FROM information_schema.TABLES
ORDER BY (data_length + index_length) DESC;