Mysql 查看数据库表大小

时间:2021-11-03 23:33:44

查看MySQL数据库表大小

use information_schema;

Mysql 查看数据库表大小select data_length,index_length  from tables where   table_schema='dbname'    and table_name = 'tablename';


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