134
101

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

rails 昇順、降順の並び替え

Posted at

データを昇順、降順に並び替えたいとき、どうやるんだっけ?とできそうでできない、かゆい感じだったので、まとめてみた。

@user = User.all.order(id: "DESC") ## idの降順
@user = User.all.order(bith_day: "ASC") ## 生年月日の昇順(デフォルトがASCになっているので通常この書き方はない)

@user = User.all.order(:id) ## 昇順or降順を指定しない場合(デフォルトは)昇順
134
101
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
134
101

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?