Mysql 디비 사용량확인

select table_schema as "DB_name", SUM(data_length+index_length)/1024/1024 as "Size(MB)"
    from information_schema.TABLES where table_schema = '[DBNAME]' GROUP BY table_schema