gpt4 book ai didi

mysql - 带有连接的 Activequery where 子句

转载 作者:行者123 更新时间:2023-11-29 07:33:08 25 4
gpt4 key购买 nike

我有两个表:Notes 和 Accounts。一个笔记可以有多个账户。我试图获取 2015 年 1 月 1 日之后创建的某种类型的所有笔记。我还想使用 ActiveQuery 的 .joins 函数同时加载帐户。

这就是我正在尝试的:

notes = Note.joins(:account).where(type: 'red').where('created_at > ?', '2015-01-01')

这应该给我一个数组,其中包含今年第一天之后创建的 Type 'red' 的所有 Notes 。问题是 created_at 不明确。如何指定我希望它引用 notes.created_at

最佳答案

只需在 where 子句中指定表名称即可:

Note.joins(:account).where(type: 'red').where('notes.created_at > ?', '2015-01-01')

关于mysql - 带有连接的 Activequery where 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31925444/

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