美文网首页
查看数据库使用大小

查看数据库使用大小

作者: 花钱约下 | 来源:发表于2017-05-03 11:14 被阅读0次

    <pre>
    use information_schema;
    select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from TABLES where table_schema='数据库名称';
    </pre>

    相关文章

      网友评论

          本文标题:查看数据库使用大小

          本文链接:https://www.haomeiwen.com/subject/bgektxtx.html