tamacyaのブック
(185 keywords)

最新日記

RSS
  • 日記はまだありません

tamasally のお気に入り

  • 西小倉事典 西小倉事典
  • dackのブック dackのブック
  • tnantoka tnantoka
  • おぎやす広辞苑 おぎやす広辞苑

tamacyaのブックのメンバー

  • 西小倉パンデイロ 西小倉パンデイロ
  • 里香 里香
  • なおき なおき
  • gacky gacky

rails orderの履歴

find の中で order を指定すると、ソートの仕方が設定できる。

デフォルト
@students = Student.all

昇順でソート
@students = Student.find(:all, :order => "student_name ASC")

降順でソート
@students = Student.find(:all, :order => "student_name DESC")

複数条件でソートする時は、カンマで条件を区切って追加。
@students = Student.find(:all, :order => "student_name DESC, created_at ASC")