This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
table_name AS `Table`, | |
ROUND((data_length / 1024 / 1024), 2) AS `Size data (MB)`, | |
ROUND((index_length / 1024 / 1024), 2) AS `Size index (MB)` | |
FROM | |
information_schema.TABLES | |
WHERE | |
table_schema = DATABASE() | |
ORDER BY | |
(index_length) DESC; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
site: | |
lang: en | |
title: Component Examples Title 2 | |
menu: | |
contact: | |
label: "123\u00A0456\u00A0789" | |
link: 'tel:+420123456789' | |
button: | |
label: CTA |