[Rails] Joining multiple tables ActiveRecord

2,534 views
Skip to first unread message

JohnnyC

unread,
May 4, 2010, 12:42:13 PM5/4/10
to Ruby on Rails: Talk
I have 3 tables as such:

Products (has many product_overruns, has many services)
*id

Product_Overruns (belongs to product)
*product_id

Services (Active Product) (belongs to product)
* product_id


I'd like to retrieve those services whose products have overruns
defined for them, and can do so by joining them with sql (no inner
join) to restrict the result sets to only those that have entries in
all 3.

When I try to create a named_scope in the Service class as such:

named_scope :has_overruns, { :joins =>
[ :product, :product_overrun ] }

.. it blows up with "ActiveRecord::ConfigurationError: Association
named 'product_overrun' was not found; perhaps you misspelled it?"

"has_many :product_overruns, :through => :products" in the Service
class has no effect.

I've got a work-around using find_by_sql to get the ids of the desired
services, but not exactly elegant.

Thanks.

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

Frederick Cheung

unread,
May 4, 2010, 1:31:05 PM5/4/10
to Ruby on Rails: Talk


On May 4, 5:42 pm, JohnnyC <gbull...@surfrecon.com> wrote:
>
> I'd like to retrieve those services whose products have overruns
> defined for them, and can do so by joining them with sql (no inner
> join) to restrict the result sets to only those that have entries in
> all 3.
>
> When I try to create a named_scope in the Service class as such:
>
>   named_scope :has_overruns, { :joins =>
> [ :product, :product_overrun ] }
>
> .. it blows up with "ActiveRecord::ConfigurationError: Association
> named 'product_overrun' was not found; perhaps you misspelled it?"

The syntax for a nested join is the same as the syntax for a nested
include, in this case :joins => {:product => :product_overruns}. I've
got some more example of the syntax expected at
http://www.spacevatican.org/2008/8/8/nested-includes-and-joins

Fred

JohnnyC

unread,
May 5, 2010, 2:16:32 PM5/5/10
to Ruby on Rails: Talk
Thanks Fred.

On May 4, 11:31 am, Frederick Cheung <frederick.che...@gmail.com>
wrote:
> On May 4, 5:42 pm, JohnnyC <gbull...@surfrecon.com> wrote:
>
>
>
> > I'd like to retrieve those services whose products have overruns
> > defined for them, and can do so by joining them with sql (no inner
> > join) to restrict the result sets to only those that have entries in
> > all 3.
>
> > When I try to create a named_scope in the Service class as such:
>
> >   named_scope :has_overruns, { :joins =>
> > [ :product, :product_overrun ] }
>
> > .. it blows up with "ActiveRecord::ConfigurationError: Association
> > named 'product_overrun' was not found; perhaps you misspelled it?"
>
> The syntax for a nested join is the same as the syntax for a nested
> include, in this case :joins => {:product => :product_overruns}. I've
> got some more example of the syntax expected athttp://www.spacevatican.org/2008/8/8/nested-includes-and-joins
Reply all
Reply to author
Forward
0 new messages