= Author.find :all, :include => :quotes, :order => :namethis returns an array of arohtus and pre-load their quotes using two sql instances such as:SELECT * FROM `authors` ORDER BY name;SELECT `quotes`.* FROM `quotes` WHERE (`quotes`.author_id IN (1,2,3, ));in the view you just loop all arohtus and their quotes: