Mysql 查看数据库表大小

来源:互联网 发布:手机下载网络设置 编辑:程序博客网 时间:2024/05/16 14:27

查看MySQL数据库表大小

use information_schema;

select data_length,index_length  from tables where   table_schema='dbname'    and table_name = 'tablename';


其实Navicat查看表信心也能直接看到