将 DISTINCT 与 ActiveRecord 结合使用

发布于 2024-10-31 02:24:25 字数 298 浏览 1 评论 0原文

我正在使用 ActiveRecord / RoR。

我的表如下所示:

id (int), start_time(time), end_time(time), ...

1, 20:00, 23:00

2, 20:00, 23:00

3, 16:00, 20:00

4, 16:00, 23:00

5, 20:00, 22:00

6, 16:00, 20:00

我需要返回具有不同 start_time + end_time 组合的记录。

I'm using ActiveRecord / RoR.

My table looks like this:

id (int), start_time(time), end_time(time), ...

1, 20:00, 23:00

2, 20:00, 23:00

3, 16:00, 20:00

4, 16:00, 23:00

5, 20:00, 22:00

6, 16:00, 20:00

I need to return the records that have a combination distinct start_time + end_time combination.

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

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

发布评论

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

评论(1

活泼老夫 2024-11-07 02:24:25
YourModelClass.select("DISTINCT start_time, end_time")

这将返回严格来说不是记录的对象,但它们将从 ActiveRecord::Base 继承,并且您可以对那些不写入数据库的对象执行几乎任何操作。

http://guides.rubyonrails.org/active_record_querying.html#selecting-specific-fields

YourModelClass.select("DISTINCT start_time, end_time")

This will return objects that aren't strictly records but they will inherit from ActiveRecord::Base and you can do pretty much anything with those objects that doesn't write to the database.

http://guides.rubyonrails.org/active_record_querying.html#selecting-specific-fields

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文