How to do joins on subqueries in AREL within Rails

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-03 12:58:13
rfb

You can use join_sources to retrieve the Arel::Nodes::Join from the instance of Arel::SelectManager, and pass that to joins

Using your example:

l_t.joins(counts.join_sources).on(l_t[:id].eq(counts[:user_id]))

This achieves a join of nested select subquery with Arel:

You can add the nested inner_query and an outer_query scope in your Model file and use ...

  inner_query = Model.inner_query(params)
  result = Model.outer_query(params).joins(Arel.sql("(#{inner_query.to_sql})"))
   .group("...")
   .order("...")

For variations on this, for example to use INNER JOIN on the subquery, do the following:

  inner_query = Model.inner_query(params)
  result = Model.outer_query(params).joins(Arel.sql("INNER JOIN (#{inner_query.to_sql}) tablealias ON a.id = b.id"))
   .group("...")
   .order("...")

Add in the specific joins, constraints and groupings to each of the queries' scopes to modify the sql statement further ie:

scope :inner_query , -> (company_id, name) {
    select("...")
    .joins("left join table1 on table1.id = table2.id")
    .where("table1.company_id = ? and table1.name in (?)", company_id, name)
    .group("...")
}

This allows you to put WHERE conditions on the nested query as well as the outer query

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!