选择所有特定日期记录的续集方式

时间:2014-10-13 06:04:15

标签: ruby sequel

在Sequel中选择忽略时间的特定日期的所有记录的最佳方法是什么?

编写一个范围从0到23:59的where子句似乎与它不同。还有其他办法吗?

1 个答案:

答案 0 :(得分:0)

使用:

Post.where(:created_at => (date.beginning_of_day..date.end_of_day))

其中date是Date对象