摘要: -- 统计三月的每天的数据量select count(*),substr(t.date,1,10) from table t where t.date like '2010-03%' group by substr(t.date,1,10) ;--统计从5月19到6月29的数据量SELECT sub... 阅读全文
posted @ 2015-06-30 11:05 谦信君 阅读(1405) 评论(0) 推荐(0)