sql 在MySQL中查找表的大小

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 在MySQL中查找表的大小相关的知识,希望对你有一定的参考价值。

-- https://stackoverflow.com/a/9620273/31493

-- Show the size of a single table:
SELECT 
    table_name AS `Table`, 
    round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB` 
FROM information_schema.TABLES 
WHERE table_schema = "$DB_NAME"
    AND table_name = "$TABLE_NAME";

-- List the size of every table in every database, largest first:
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;

以上是关于sql 在MySQL中查找表的大小的主要内容,如果未能解决你的问题,请参考以下文章

如何查看SQL2000数据库中所有表的数据量大小

mysql 内存表和一般表的区别

MySQL-快捷查询

用sql统计数据库表的大小

如何在数据库C#中查找表的主键

在 SQL 表的文本字符串中查找换行符?