Rails3:如何使用关系代数来替换 SQL 结构,例如 NOT 和 OUTER JOIN

发布于 2024-09-04 16:10:19 字数 350 浏览 6 评论 0原文

有发表和评论两种模型。我应该得到所有没有带有特定标签的评论的帖子。我如何使用新的 Rails 3 功能(例如关系代数)(arel)来做到这一点。

SQL 解决方案应该是这样的:

SELECT     `posts`.* FROM       `posts` LEFT OUTER JOIN `comments` ON `posts`.`id` = `comments`.`post_id`
WHERE    NOT (`comments`.`tag` = 'my_tag')

There are two models Post and Comment. I should get all posts, which have no comments with specific tag. How can I do this using new Rails 3 features such relational algebra (arel).

SQL-solution should be something like this:

SELECT     `posts`.* FROM       `posts` LEFT OUTER JOIN `comments` ON `posts`.`id` = `comments`.`post_id`
WHERE    NOT (`comments`.`tag` = 'my_tag')

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

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

发布评论

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

评论(1

揽月 2024-09-11 16:10:19

添加到您的 Gemfile:

gem 'meta_where'

然后:

Post.includes(:comment).where(:comments => {:tag.not_eq => 'my_tag'})

Add to your Gemfile:

gem 'meta_where'

and then:

Post.includes(:comment).where(:comments => {:tag.not_eq => 'my_tag'})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文