gpt4 book ai didi

mysql - 优化通过 has_many :through association 检索 ID 的方式

转载 作者:行者123 更新时间:2023-11-29 00:18:45 25 4
gpt4 key购买 nike

我有 3 个模型如下:(我还描述了数据库结构,以防不熟悉 RubyOnRails 的人能够帮助我)


线程.rb

class Thread
has_many :thread_profils
has_many :profils, :through => :thread_profils
end

线程

integer: id (PK)

ThreadProfil.rb

class ThreadProfil
belongs_to :thread
belongs_to :profil
end

thread_profils

integer: id (PK)
integer: thread_id (FK)
integer: profil_id (FK)

Profil.rb

class Profil
end

配置文件

integer: id (PK)

在我的一个 Controller 中,我正在寻找最优化的方法来查找包含恰好两个配置文件(当前一个,另一个)的线程 ID ):

我得到了我的 current_profil.id 和另一个 profil.id 但我想不出一个简单的方法来获取 的集合/列表/数组Thread.id,同时处理较少的SQL请求。


目前我找到的唯一解决方案是以下一个,我认为它根本没有被“优化”。

thread_profils = ThreadProfil.where(:profil_id => current_profil.id)
thread_ids = thread_profils.map do | association |
profils = Thread.find(association.thread_id).profils.map do | profil |
profil.id if profil.id != current_profil.id
end.compact
if (profils - [id]).empty?
association.thread_id
end
end.compact

正在处理以下 SQL 查询:

SELECT `thread_profils`.* FROM `thread_profils` WHERE `thread_profils`.`profil_id` = [current_profil.id]

对于每个结果:

SELECT `threads`.* FROM `threads` WHERE `threads`.`id` = [thread_id] LIMIT 1

SELECT `profils`.* FROM `profils` INNER JOIN `thread_profils` ON `profils`.`id` = `thread_profils`.`profil_id` WHERE `thread_profils`.`thread_id` = [thread_id]

是否有任何简单的方法可以使用 rails 或直接使用 SQL?

谢谢

最佳答案

我在 sql 中发现了以下查询:

SELECT array_agg(thread_id) FROM "thread_profils" WHERE "thread_profils"."profil_id" = 1 GROUP BY profil_id HAVING count(thread_id) =2

注意:array_agg 是一个 postgres 聚合函数。 Mysql 有 group_concat,它会给你一个逗号分隔的 ID 字符串,而不是一个数组。

此 sql 由以下 Rails 代码生成:

 ThreadProfil.select('array_agg(mythread_id)').where(profil_id: 1).group(:profil_id).having("count(thread_id) =2").take

这会生成正确的查询,但结果作为 ThreadProfil 没有意义 - 不过,您可以进一步使用它来获得您想要的结果。

关于mysql - 优化通过 has_many :through association 检索 ID 的方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21862171/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com