MySQL管理一些基础SQL语句
摘要:
1 1、进入information_schema 数据库(存放了其他的数据库的信息) 2 use information_schema; 3 4 2、查询所有数据的大小: 5 select concat(round(sum(data_length/1024/1024),2),'MB') as data from information_schema.tables; 6 7 3、... 阅读全文
posted @ 2016-06-07 00:03 东云180 阅读(301) 评论(0) 推荐(0) 编辑