SELECT
table_schema,
table_name,
ROUND( SUM( data_length + index_length )/ 1024 / 1024 / 1024, 2 )
FROM
information_schema.TABLES
WHERE
table_schema = ''
and
table_name = ''
GROUP BY
table_schema,
table_name
ORDER BY
3 DESC;
TIDB 查一张表的大小(GB)
最新推荐文章于 2024-05-31 15:27:14 发布
该SQL查询用于统计指定数据库(table_schema)中每个表(table_name)的数据和索引大小,总和后转换为GB单位,并按占用空间从大到小排序。
摘要由CSDN通过智能技术生成