Mysql 查看数据库表大小

查看MySQL数据库表大小

use information_schema;

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


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

猜你喜欢

转载自blog.csdn.net/xinjianwuhen1991/article/details/78305036