0
0

More than 3 years have passed since last update.

【条件指定】RubyでDBから特定のidかつ最新のデータを取得する

Last updated at Posted at 2020-03-07

1.特定のidを持つ投稿を指定

where(location_id: 1)

2.最新のデータを持つ投稿を指定

order(updated_at: :desc).limit(1)

3.つなぎ合わせる(特定のIDかつ最新)

@posts = Post.where(location_id: 1).order(updated_at: :desc).limit(1)

完了

0
0
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
0
0