Ruby on Rails Sunday, July 1, 2012

On Jun 30, 10:08 am, tanizawa <kazuyat7...@gmail.com> wrote:
> hi
> I amd tanizawa.
>
> I had problem.
> I can not get main.name value from below sql.
>   "find_by_sql 'select main.id,main.name,sub.name from main left join sub
> on sub.id = main.id'"
> Please teach me how to get borth name value.

Activerecord can't tell the difference between the 2 name columns -
you need to give them distinct names e.g.

select main.id,main.name,sub.name as sub_name from main ...

Fred

--
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-US.

No comments:

Post a Comment