📜  返回mysql代码示例中表的大小

📅  最后修改于: 2022-03-11 15:05:00.140000             🧑  作者: Mango

代码示例1
SELECT 
     table_schema as `Database`, 
     table_name AS `Table`, 
     round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB` 
FROM information_schema.TABLES 
ORDER BY (data_length + index_length) DESC;