Stage:
I have this model:
Promo(id: integer, start_date: datetime, end_date: datetime)
I want to know which current promotions. May be our query should be like:
SELECT * FROM promos WHERE now BETWEEN start_date AND end_date;
Question:
How should I make it in Ruby? Which is the correct way?
Thank you.
Yes, you can use comparison operators to compare dates e.g.:
But are you trying to compare a date to a datetime?
If that's the case, you'll want to convert the datetime to a date then do the comparison.
or
will return true if '2010-11-01' has already passed
I hope this helps.