LoginSignup
1
1

More than 3 years have passed since last update.

【Rails】 日時がそれぞれのカラムを持っているときの検索方法

Posted at

日時がそれぞれのカラムを持っているときの検索方法

日付および時間がそれぞれ文字列としてDBに格納されている時の検索方法をメモとして残します。

start_datetime = '2020/12/22 23:35'
scope = Post.all

start_date, start_time = start_datetime.split(' ')
# 該当する日付以降のものを抽出
scope = scope.where('start_date >= ?', start_date)
# start_date が等しい時の該当しない時間を除去
scope = scope.where.not('start_date = ? AND start_time < ?', start_date, start_time)

参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1