Flowdock
method

fourth

Importance_1
v4.1.8 - Show latest stable - 0 notes - Class: ActiveRecord::FinderMethods
fourth() public

Find the fourth record. If no order is defined it will order by primary key.

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
Show source
Register or log in to add new notes.