查看MySQL数据库表大小
use information_schema;
select data_length,index_length from tables where table_schema='dbname' and table_name = 'tablename';
其实Navicat查看表信心也能直接看到
查看MySQL数据库表大小
use information_schema;
select data_length,index_length from tables where table_schema='dbname' and table_name = 'tablename';
其实Navicat查看表信心也能直接看到