gpt4 book ai didi

不存在的 ActiveRecord

转载 作者:行者123 更新时间:2023-12-04 08:17:40 25 4
gpt4 key购买 nike

除了 find_by_sql 之外,还有没有办法将 EXISTS 与 ActiveRecord 一起使用?

我想要一种在一对多关系中查找没有关联的所有记录的好方法。

SELECT DISTINCT store_type FROM stores
WHERE NOT EXISTS (SELECT * FROM cities_stores
WHERE cities_stores.store_type = stores.store_type)

最佳答案

Store.all(:select => "DISTINCT store_type",
:conditions => "NOT EXISTS (SELECT * FROM cities_stores WHERE cities_stores.store_type = stores.store_type)")

ActiveRecord 将执行与您在上面输入的相同的查询。返回的 Store 实例将具有单个 store_type 属性。

关于不存在的 ActiveRecord,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2909115/

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