Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Railsでは、私はよくこれを行います:
Model.last(5).first
これは最後の要素-5を取得します。
これを行う組み込みの方法はありますか?
より一般的な方法は、offset() です。
Model.offset(5).last
編集(怠惰な人向け):
1.8.7 :001 > User.first.id => 1 1.8.7 :002 > User.last.id => 143455 1.8.7 :003 > User.offset(5).last.id => 143450