如何将范围与子查询或 find_by_sql 链接或组合

发布于 2024-10-15 17:50:32 字数 294 浏览 3 评论 0原文

我想执行一个查询,

SELECT * FROM ( SELECT * FROM products ORDER BY price ASC ) AS s GROUP BY item;

该查询返回每件商品的所有产品中最便宜的。使用此子查询很好,因为它可以在 O(N logN) 时间内运行。

因此,我可以使用 find_by_sql 找到它,但如果能够将它与 Product 的其他作用域链接起来,那就太好了。

有人知道如何将其写为作用域或链作用域和 find_by_sql 吗?

I would like to perform a query like

SELECT * FROM ( SELECT * FROM products ORDER BY price ASC ) AS s GROUP BY item;

which return the cheapest of all products for each item. Using this subquery is good because it can run in O(N logN) time.

So I can find this with find_by_sql, but it would be nice to be able to chain it with other scopes for Product.

Anyone know how to either write this as a scope or chain scoped and find_by_sql?

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

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

发布评论

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

评论(1

一场信仰旅途 2024-10-22 17:50:32

你应该能够做类似的事情

Product.from("(SELECT * FROM products ORDER BY price ASC) AS products").group(:item)

You should be able to do something like

Product.from("(SELECT * FROM products ORDER BY price ASC) AS products").group(:item)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文