Railsドキュメント

4番目のレコードを取得

適応バージョン

説明

4番目のレコードを検索

使い方

モデル.fourth()

# 失敗したら例外発生
モデル.fourth!()

Person.fourth # returns the fourth object fetched by SELECT * FROM people
Person.offset(3).fourth # returns the fourth object from OFFSET 3 (which is OFFSET 6)
Person.where(["user_name = :u", { u: user_name }]).fourth

ソースコード