mysql语句技巧
Posted fslnet
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql语句技巧相关的知识,希望对你有一定的参考价值。
1,查看所有数据库大小
use information_schema;
select concat(round(sum(DATA_LENGTH/1024/1024),2),‘MB‘) as data from TABLES;
2,查看指定数据库大小
use information_schema;
select concat(round(sum(DATA_LENGTH/1024/1024),2),‘MB‘) as data from TABLES where table_schema=‘dbname‘;
3,查看指定数据库中指定表的大小
use information_schema;
select concat(round(sum(data_length/1024/1024),2),‘MB‘) as data from tables where table_schema=‘dbname‘ and table_name=‘tbname‘;
以上是关于mysql语句技巧的主要内容,如果未能解决你的问题,请参考以下文章