mysql 查看数据库索引 和 数据 大小 博客分类: mysql mysql索引大小数据大小
程序员文章站
2024-03-22 20:21:58
...
查看数据概况
select * from information_schema.TABLES where information_schema.TABLES.TABLE_SCHEMA='business_shop2' and information_schema.TABLES.TABLE_NAME='ls_prod'
请尊重知识,请尊重原创 更多资料参考请见 http://www.cezuwang.com/listFilm?page=1&areaId=906&filmTypeId=1
查看索引大小
select CONCAT(ROUND(SUM(t.index_length)/(1024*1024), 2), ' MB') AS 'Total Index Size' from ( select index_length from information_schema.TABLES where information_schema.TABLES.TABLE_SCHEMA='business_shop2' and information_schema.TABLES.TABLE_NAME='ls_prod' ) as t
查看数据大小
select CONCAT(ROUND(SUM(t.data_length)/(1024*1024), 2), ' MB') AS 'Total data Size' from ( select data_length from information_schema.TABLES where information_schema.TABLES.TABLE_SCHEMA='business_shop2' and information_schema.TABLES.TABLE_NAME='ls_prod' ) as t
请尊重知识,请尊重原创 更多资料参考请见 http://www.cezuwang.com/listFilm?page=1&areaId=906&filmTypeId=1
推荐阅读
-
mysql 查看数据库索引 和 数据 大小 博客分类: mysql mysql索引大小数据大小
-
Mysql查询数据库表大小
-
postgresql 查看数据库,表,索引,表空间以及大小
-
PostgreSql数据库查看表空间,索引,表大小
-
postgresql 查看数据库,表,索引,表空间以及大小
-
postgresql 查看数据库,表,索引,表空间以及大小
-
mysql 8.0给数据库添加用户和赋权 博客分类: mysql
-
将现有MySQL数据库改为大小写不敏感
-
MySQL的btree索引和hash索引的区别(转载) 博客分类: 数据库 数据库索引btreehash
-
将现有MySQL数据库改为大小写不敏感