mysqlデータベース占有ディスクサイズの表示

808 ワード

データベースのテーブルあたりのディスク・サイズの表示select   TABLE_NAME, concat( truncate (data_length/1024/1024,2), ' MB' as   data_size, concat( truncate (index_length/1024/1024,2), ' MB' as   index_size from   information_schema.tables  where   TABLE_SCHEMA =  'TestDB' group   by   TABLE_NAME order   by   data_length  desc ; TestDB
 
原文接続:https://www.cnblogs.com/Fooo/p/9183661.html