当前位置:   article > 正文

mysql查询前30天内数据_substr(a.store_date, 1, 10)

substr(a.store_date, 1, 10)

SELECT
substr( create_date(字段), 1, 10 ) AS time,
IFNULL(count(*),0) as count(计数)
FROM
app_module
WHERE 
substr( create_date(字段), 1, 10 ) > DATE_SUB(substr('2018-09-05'(从哪一天统计), 1, 10 ), INTERVAL 300(统计多少天) DAY ) AND substr('2018-09-05'(从哪一天统计), 1, 10 ) >= substr( create_date(字段), 1, 10 )
GROUP BY
substr( create_date(字段), 1, 10 )

红色部分是需要修改的。

然后我们可以看到,每天的数量都展示出来了,那么出现个问题。会出现如果当天没有,就不展示了。

但是我们需要展示所有的,没有的话就不展示。

我们用代码实现

  1. private static List<Map<String, Object>> map2map(List<Map<String, Object>> mapList){
  2. //补全数据库中不存在的日期,订单数为0
  3. List<String> dayList = DateUtil.dayList(30);//得到7天前到今天每天的日期
  4. boolean exists = false;
  5. for (int i=0;i<dayList.size();i++) {
  6. exists=false;
  7. for (Map<String, Object> hs : mapList) {
  8. if (dayList.get(i).equals(hs.get("time"))) {
  9. exists=true;
  10. break;
  11. }
  12. }
  13. if(!exists){
  14. final String date=dayList.get(i);
  15. mapList.add(i,new HashMap<String,Object>(){{
  16. put("count", 0);
  17. put("time", date);
  18. }});
  19. }
  20. }
  21. return mapList;
  22. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/242189
推荐阅读
相关标签
  

闽ICP备14008679号