gpt4 book ai didi

datetime - Rails 3按日期分组datetime列

转载 作者:行者123 更新时间:2023-12-03 10:02:47 26 4
gpt4 key购买 nike

Foo.group(:start_at).count(:id)

如何按日期将其分组? “start_at”列是日期时间列

最佳答案

这应该工作(导轨3):

Foo.order(:start_at).group("DATE(start_at)").count

编辑:如果您使用的是PostgreSQL,查询应为
Foo.order("DATE(start_at)").group("DATE(start_at)").count

否则你会得到一个错误
("PGError: ERROR:  column "foos.start_at" must appear in the GROUP BY clause or be used in an aggregate function")

基于

Graphing new users by date in a Rails app using Seer



http://www.pastbedti.me/2009/11/grouping-a-timestamp-field-by-date-in-ruby-on-rails-postgresql/

关于datetime - Rails 3按日期分组datetime列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4043109/

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