Active Record Ruby

Account.find :all, :limit => 10, :offset => 20
And the following SQL query will result:
SELECT * FROM accounts LIMIT 10 OFFSET 20