112,3ミオ何?行? b?
ストレージサイズの場合、心配する必要はあまりありません。ディスクスペースの使用量を最適化する方法(バキューム/最適化テーブル)についてです。
一方、行の場合は、異なるテーブルを追跡し、その理由を理解する必要があります。
use(スキーマ名を置き換える)
SELECT TABLE_NAME, table_rows, data_length, index_length,
round(((data_length + index_length) / 1024 / 1024),2) "Size in MB"
FROM information_schema.TABLES WHERE table_schema = "test"
union all
SELECT 'total', sum(table_rows), sum(data_length), sum(index_length),
sum(round(((data_length + index_length) / 1024 / 1024),2)) "Size in MB"
FROM information_schema.TABLES WHERE table_schema = "test" group by 1