gpt4 book ai didi

ruby-on-rails - rails : How to group records that have the same Date (month day year) for a Datetime field?

转载 作者:行者123 更新时间:2023-12-04 03:49:41 24 4
gpt4 key购买 nike

我有一个 Purchase 模型,我想按它们的 ordered_datetime 字段对所有记录进行分组。但是,我不关心时间,我只想按日期分组。因此,如果有 2 个订单:

  1. 2014 年 5 月 12 日中午 12:00
  2. 2014 年 5 月 12 日下午 3:00

即使它们发生在一天中的不同时间,也应该归为一组。

有没有办法做到这一点? Purchase.uniq.pluck(:ordered_datetime) 将 2 条记录分成 2 组,因为它们的时间不同。

最佳答案

您可以在时间戳列上使用 DATE 函数:

Purchase.group('DATE(ordered_datetime)').count

返回每个日期的购买计数。

您还可以通过添加 order 子句对日期进行排序:

Purchase.group('DATE(ordered_datetime)').order('date_ordered_datetime').count

关于ruby-on-rails - rails : How to group records that have the same Date (month day year) for a Datetime field?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23619115/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com