Mysql 查看数据库表大小

select table_name,table_rows,data_length+index_length,concat(round((data_length+index_length)/1024/1024,2),'MB') data from information_schema.tables where table_schema='数据库名';