laravel按天、按小时,查询数据

在使用Laravel进行后台数据统计时,遇到按天或小时分组查询注册量的问题。本文介绍了如何正确编写这种查询,并推荐了一个适用于统计时间选择的插件,支持本周、本月等不同周期的数据查看。同时分享了与ECharts结合的实用代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

使用laravel做后台数据统计的时候,需要查询每天的注册量之类的数据

这时候如果直接用created_at分组,是不好用的。

1、所以本文解决这个查询应该怎么写。

2、并且推荐一个时间选择插件,因为统计中一定会用到,本周数据、本月、本季度、上个月。。。。

按天分组数据:

Event::where('created_at','>',Carbon::parse($request->start_date))
->where('created_at','<',Carbon::parse($request->end_date))
//两个where限制开始结束时间
->groupBy('date')
->get([DB::raw('DATE(created_at) as date'),DB::raw('COUNT(*) as value')])
->toArray();

如果想按小时分组所有查询出来的数据:

Event::where('created_at','>',Carbon::parse('2017-01-01'))
->where('created_at','<',Carbon::parse('2017-11-09'))
->groupBy('day')
->get([
//通过date_format()来格式化created_at字段
    DB::raw('DATE_FORMAT(created_at,\'%H\') as day'),
    DB::raw('COUNT(*) as value')])
->toArray()

分享一个时间选择插件
这是官网地址

我把我改好的代码附上:

$(function () {
/*设置开始结束时间*/
    var start = moment().subtract(30, 'days');
    var end = moment().subtract(-1,'day');
    var datas = {};
/*选择之后,将时间重新赋值input*/
    function cb(start, end) {
        $('#reportrange span').html(start.format('YYYY/MM/DD') + ' - ' + end.format('YYYY/MM/DD'));
    }
    $('#reportrange').daterangepicker({
    startDate: start,
    endDate: end,
    /*本地化数据*/
    locale: {
        "format": "YYYY/MM/DD",
        "separator": " - ",
        "applyLabel": "应用",
        "cancelLabel": "关闭",
        "fromLabel": "From",
        "toLabel": "至",
        "customRangeLabel": "自定义",
        "weekLabel": "W",
        "daysOfWeek": ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"
        ],
        "monthNames": ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"
        ],
        "firstDay": 1
    },
    ranges: {
        '今天': [moment(), moment().subtract(-1, 'days')],
        '昨天': [moment().subtract(1, 'days'), moment()],
        '前7天': [moment().subtract(7, 'days'), moment()],
        '前30天': [moment().subtract(30, 'days'), moment()],
        '本月': [moment().startOf('month'), moment().endOf('month').subtract(-1,'day')],
        '上月': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month').subtract(-1,'day')],
        '所有': [moment("2017-09-25"), moment().subtract(-1, 'days')]
    }
}, cb);

    cb(start, end);
});

超级好用,结合echart

在用echart的map时候,因为地图权限没有,所以要加载百度地图。这个坑另开帖子记录吧。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值