ActiveRecord in RoR How to select data where date less than

activerecord, ruby-on-rails

Solution

You can do

@d_repeats = Event.where(:repeat => 'daily').where("schedule < ?", date.end_of_month )

Problem

Please can solve this select: ``` @d_repeats = Event.where(:repeat => 'daily', :shedule < date.end_of_month ) ``` Here `:shedule < date.end_of_month` is not correct. How it should be?

Original source