Ruby on Rails:从数据库列获取最大值

发布于 2024-10-17 04:49:47 字数 436 浏览 2 评论 0 原文

目前,我可以在数据库上进行直接的 SQL 查询:

SELECT MAX(bar) FROM table_name

它会返回该表中的最大值。然而,当我在 Rails 中进行我认为等效的调用时,它不起作用。我正在调用:

Bar.all(:select => "Max(bar)")

这只是返回:

[#<Bar >]

在我正在调用的列中是一系列识别数字,我正在寻找最大的一个。 Rails 中还有其他方法可以访问它吗?

Currently I can make the straight-up SQL query on my DB:

SELECT MAX(bar) FROM table_name

And it returns with the max value in that table. When I make what I consider to be an equivalent call in Rails, however, it does not work. I am calling:

Bar.all(:select => "Max(bar)")

This simply returns with:

[#<Bar >]

In the column I'm calling on is a series of identifying numbers, I'm looking for the largest one. Is there some other way of accessing this in Rails?

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

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

发布评论

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

评论(2

痴者 2024-10-24 04:49:47

假设您的模型名称是 Bar 并且它有一个名为 bar 的列,这应该可以工作:

Bar.maximum(:bar)

请参阅 计算 :: 最大值 了解更多信息。

Assuming your model name is Bar and it has a column named bar, this should work:

Bar.maximum(:bar)

See the excellent Rails Guides section on Calculations :: Maximum for more info.

不喜欢何必死缠烂打 2024-10-24 04:49:47

另一种方式

Bar.select("Max(bar) as max_bar").first.max_bar

one more way

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