Home  »  CodeGuidesProgrammingSnippetsSoftwareTechnology   »   How to get the MySQL Db Size in SQL

How to get the MySQL Db Size in SQL

Posted: October 3, 2022 | by Michael Bright

Use this to get MySQL Db size:

SELECT table_schema "DB Name",
        ROUND(SUM(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB" 
FROM information_schema.tables 
GROUP BY table_schema; 

Found this article interesting? Follow Brightwhiz on Facebook, Twitter, and YouTube to read and watch more content we post.