ActiveRecord 连接语法

发布于 2024-10-15 12:13:16 字数 417 浏览 2 评论 0原文

我需要使用 ActiveRecord 表达以下连接条件:

SELECT ...
FROM U
LEFT OUTER JOIN F ON U.key = F.foreign_key
 AND F.key = ?
WHERE ...

where ?在运行时被替换。

以下内容会导致 SQL 语法错误:

joins("LEFT OUTER JOIN F on U.key = F.foreign_key AND F.key=?", key)

我似乎无法确定 ActiveRecord 是否支持此“动态替换”(无论它被称为什么)。

在 WHERE 子句中添加限制 (where("F.key=?", key)) 会将 OUTER JOIN 折叠为 JOIN。

I need to express the following join condition using ActiveRecord:

SELECT ...
FROM U
LEFT OUTER JOIN F ON U.key = F.foreign_key
 AND F.key = ?
WHERE ...

where ? is substituted at run time.

The following causes a SQL-syntax error:

joins("LEFT OUTER JOIN F on U.key = F.foreign_key AND F.key=?", key)

I can't seem to determine if ActiveRecord supports this 'dynamic substitution' (whatever this is called).

Adding the restriction (where("F.key=?", key)) in the WHERE clause will collapse the OUTER JOIN to a JOIN.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冬天旳寂寞 2024-10-22 12:13:16

这个语法有效:

joins("LEFT OUTER JOIN F on U.key = F.foreign_key AND F.key=#{key}")

This syntax worked:

joins("LEFT OUTER JOIN F on U.key = F.foreign_key AND F.key=#{key}")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文