Answers for "database size mysql"

SQL
5

get database size mysql

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;
Posted by: Guest on January-18-2021
0

mysql check 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;
Posted by: Guest on April-23-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language