如何在 Rails 中使用 GROUP_CONCAT?

How can I use GROUP_CONCAT in Rails?

我有以下查询,我想将其与 ActiveRecord 一起使用,以便它可以在生产服务器上转换为基于本机 ORACLE 的查询。现在我正在使用 SQLITe。

select c.name,co.code,GROUP_CONCAT(c.name) AS GroupedName
from countries c
INNER JOIN continents co
on c.continent_code = co.code
INNER JOIN event_locations el
on el.location_id = c.id
group by co.code

据我所知,Rails 中没有 group_concat 等价物,但您可以使用 includes 来做到这一点:

continents = Continents
  .joins(:countries, :event_locations)
  .includes(:countries)
  .group("continents.code")

continents.each do |continent| 
  continent.countries.join(",")
end

这只会产生 2 个查询 - 我知道,不如一个好,但我认为这是最好的,而不是 Rails 没有“group_concat”。另一种方式是这样的:

Country
  .select("countries.id, GROUP_CONCAT(countries.name) as grouped_name")
  .joins(:continents, :event_locations)
  .group("continents.code")

但如果这样做,则需要根据您的数据库供应商进行更改。

  • MySQL: group_concat(countries.name)
  • PostgreSQL: string_agg(countries.name, ',')
  • Oracle: listagg(countries.name, ',')

On Rails 6(我不知道其他的),如果你使用 select

,你可以只生成一个查询
continents = Continent.joins(:country).select(:name, 'countries.name as country_name')

countries_list = []

continents.each do |continent|
  countries_list << continent.country_name
end

我知道代码没有按大陆分组,但我的想法是显示 how to make the query at oncehow to access the result。如何分组你可以用对你更好的方式来做。

记住你需要在大陆建立关系class

has_many :country

希望我能帮到别人