1. select
    2. round(sum(DATA_LENGTH/1024/1024), 2) as data_size,
    3. round(sum(DATA_LENGTH/1024/1024), 2) as index_size,
    4. round(sum((DATA_LENGTH + INDEX_LENGTH)/1024/1024), 2) as total_size,
    5. "MB" as unit
    6. from information_schema.TABLES
    7. where table_schema='virtual' and table_name='tb_orders';