とという2つの関係がCourse
ありSchool
ます。
Course
日時フィールドもありますopen_date
。
学校の階層が1でないすべてのコースを、特定の日付で返却したいと思います。
次のようなRailsコードが必要です。
Course.includes(:school).where("school.tier <> ? AND open_date between ? and ?",1 , date1, date2)
とという2つの関係がCourse
ありSchool
ます。
Course
日時フィールドもありますopen_date
。
学校の階層が1でないすべてのコースを、特定の日付で返却したいと思います。
次のようなRailsコードが必要です。
Course.includes(:school).where("school.tier <> ? AND open_date between ? and ?",1 , date1, date2)