我需要选择Authors
和Comments
Posts
低于created_at
的所有some time
Author.include(:comments, :posts).
where(comments: { created_at < 8.hours,ago}, posts: { created_at< 8.hours.ago } )`
作者可能没有任何评论或帖子。我该怎么办?
答案 0 :(得分:-1)
这是在任何特定模型中查找最近创建的对象的方式:
Model.where(created_at: 5.days.ago..Time.current)
也许可以有所帮助