作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Purchase
模型,我想按它们的 ordered_datetime
字段对所有记录进行分组。但是,我不关心时间,我只想按日期分组。因此,如果有 2 个订单:
即使它们发生在一天中的不同时间,也应该归为一组。
有没有办法做到这一点? 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/
我是一名优秀的程序员,十分优秀!