I came across 1 nuggets about the topic : size on internet.
You can search these links on my public listing page on learning paths
SELECT table_name AS "Table",
ROUND(((data_length + index_length) / 1024 / 1024), 2) AS "Size (MB)"
FROM information_schema.TABLES
WHERE table_schema = "bitfolio"
ORDER BY (data_length + index_length) DESC;