DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Record Grouping
@users = User.find( :all, :select => "MONTH(created_at) as month, YEAR(created_at) as year, COUNT(*) AS records", :conditions => ["admin = 0'"], :group => "year, month") <% for @user in @users %> <%=@user.month%> <%=@user.year%> <%=@user.records%> <% end %>





