0

我有桌子:

table specs
column: profession_id
column: id

table prof
column: id

我已成功收到来自单个教授的数据并列出了它的孩子(规格)

Profession.joins(:specializations).find_by_slug(params[:id])

但现在我还有两张桌子:

table docs
column: id

table docs_specs
column: docs_id
column: specs_id

因此,表格文档和规范是相互关联的。我怎样才能获得单一的教授,它的子规格(已经工作)和每个规格的“文档”子级。有点复杂吧?

4

1 回答 1

0

你可以这样做:

Profession.where(:id >= params[:id]).joins(:specs => {:docs_specs => :docs})
于 2013-09-03T14:28:08.300 回答