Skip to content

Instantly share code, notes, and snippets.

@carpeliam
Created October 1, 2008 02:48
Show Gist options
  • Save carpeliam/14014 to your computer and use it in GitHub Desktop.
Save carpeliam/14014 to your computer and use it in GitHub Desktop.
class Specialty < ActiveRecord::Base
named_scope :all_by_popularity,
:select => 'specialties.*, count(specialties.id) AS c',
:joins => :stores,
:group => 'specialties.id',
:order => 'c DESC'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment