Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this code

User.find(:all, :limit => 10, :joins => :user_points,
                :select => "users.*, count(user_points.id)", :group =>
                "user_points.user_id")

which generates following sql

SELECT users.*, count(user_points.id) 
FROM `users` 
INNER JOIN `user_points` 
ON user_points.user_id = users.id 
GROUP BY user_points.user_id 
LIMIT 10

is it possible to make LEFT JOIN instead of INNER JOIN other way than User.find_by_sql and manualy typing the query?

share|improve this question

1 Answer

up vote 40 down vote accepted

You can try this

User.find(:all, :limit => 10,
            :joins => "LEFT JOIN `user_points` ON user_points.user_id = users.id" ,
            :select => "users.*, count(user_points.id)", :group =>
            "user_points.user_id")
share|improve this answer
great, exactly what i was looking for – Jakub Arnold Oct 2 '09 at 14:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.