We have two models, Articles and Votes; it''s the typical situation; users can vote on articles so the models look something like this: class Article < ActiveRecord::Base has_many :votes end class Vote < ActiveRecord::Base belongs_to :user belongs_to :article end (user isn''t listed here because it''s not important but you get the idea). What we want to do is actually get back the number of votes with the article The SQL for this is pretty straight forward and looks like: SELECT articles.*, COUNT(votes.id) AS vote_count FROM articles INNER JOIN votes ON articles.id = votes.article_id GROUP BY articles.id We''d like to be able to then do something like Article.find(:all, :order => "vote_count DESC") and <%= Article.find(125).vote_count %> problem is, we can''t work out if it''s even possible in Rails to make the Article model use this SQL, or if there''s another solution we''re overlooking. Does anyone know if it can be done or could point us in the right direction? Pete --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---