我有一个可以举办活动的地点。我想要一个upcoming_events
方法,但希望它向下舍入,这样如果有人在晚上 10 点看,它会显示今天的事件。我有这个:
def upcoming_events
d=Time.new
d.strftime("%m-%d-%Y")
l=Event.where('location_id=? and start_datetime>?',self.id, d)
end
我得到正确转换但在d.strftime
但查询是:
SELECT `events`.* FROM `events` WHERE (location_id=301 and start_datetime>'2012-06-20 02:49:23')
知道如何让它做'2012-06-20'吗?