I have two models
class User < ActiveRecord::Base
has_one :work
end
class Work < ActiveRecord::Base
belongs_to :user
end
I need to have distinct description from Work table for specific country's users I have written following query
Work.includes(:user).where("users.country_name = ?",'IN').select("distinct works.description").limit(10)
It works but it does not give me distinct works.description

userstable doesn't havedescriptioncolumn you can replacedistinct works.descriptionwithdistinct descriptionand it should work. Otherwise you can giveworks.descriptionan alias using smth likedistinct works.description as work_descrand then get the value asresult[0].work_descr. Note, that result of this query is an array, so you should callwork_descr(ordescriptionin the 1st case) on its elements. – KL-7 Apr 25 '12 at 11:26