I am trying to set up a filter form, in which I can select users based on User attributes and get a count of the user's post filtered on Post attributes this generated query runs very well, SELECT DISTINCT `users`.* FROM `users` LEFT OUTER JOIN `posts` ON `posts`.`user_id` = `users`.`id` WHERE (`posts`.`title` LIKE '%pa%') ORDER BY `users`.`last_name` ASC and I can display all selected users info : %tr %td= user.id %td= user.first_name %td= user.last_name %td= user.email but how can I add a column with the number of filtered posts for each user ? thanks for your feedback [using Rails 3.2.3 )
on 2012-04-19 17:58
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.