Answers for "mysql check db size linux"

SQL
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