码迷,mamicode.com
首页 > 数据库 > 详细

mysql 语句集锦

时间:2014-12-22 19:50:12      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:数据库   mysql   where   

 查看数据库各表容量大小:

select TABLE_NAME, concat(truncate(data_length/1024/1024,2),‘ MB‘) as data_size,

    concat(truncate(index_length/1024/1024,2),‘ MB‘) as index_size

    from information_schema.tables where TABLE_SCHEMA = ‘cjss‘

    group by TABLE_NAME

    order by data_length desc;

TABLE_SCHEMA 换数据名。


每天每个媒体生采集多少变文章:

SELECT copyfrom,DATE(FROM_UNIXTIME(ext_news.publishtime)),count(*) from ext_news group by copyfrom,DATE(FROM_UNIXTIME(ext_news.publishtime))


创建用户:

grant all privileges on vtdc.* to ‘joe’@‘10.163.225.87’ identified by ‘123‘;


mysql 语句集锦

标签:数据库   mysql   where   

原文地址:http://felixcode.blog.51cto.com/3264160/1592693

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!