我有以下查询要与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
答案 0 :(得分:10)
只要我知道,Rails中没有group_concat
等价物,但您可以使用includes
来执行此操作:
continents = Continents
.joins(:countries, :event_locations)
.includes(:countries)
.group("continents.code")
continents.each do |continent|
continent.countries.join(",")
end
这将只产生2个查询 - 我知道,它不如一个查询,但我认为这比没有“group_concat”的Rails更好。另一种方式是这样的:
Country
.select("countries.id, GROUP_CONCAT(countries.name)as grouped_name")
.joins(:continents, :event_locations)
.group("continents.code")
但是如果你这样做,你需要根据你的数据库供应商进行更改。
答案 1 :(得分:0)
在 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 once
和 how to access the result
。如何以对你更好的方式分组你可以做的事情。
记住你需要在大陆类中创建关系
has_many :country
希望我能帮助别人