Ruby on Rails Tuesday, March 1, 2011

Hello Everyone,
I am having problems in implementing joins in ror. as I used

[code]@users=User.joins('LEFT OUTER JOIN donations ON donations.user_id
= users.id')[/code]

I also tried

[code]@users=User.find_by_sql "select u.*, d.amount from users u
left join donations d on u.id=d.user_id"[/code]

but since model name is user it only displays all records of users table
not a single record of donations table.
I want to display records of both tables users and donations with the
help of foreign key user_id in donations.

Thanks in advance

--
Posted via http://www.ruby-forum.com/.

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment