@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 %>
You need to create an account or log in to post comments to this site.