google-app-engine 最大值

发布于 2024-12-10 10:12:04 字数 84 浏览 0 评论 0原文

我正在为我的应用程序使用谷歌应用程序引擎和jdo。我需要获取数据存储实体的最大长值。有没有办法在应用程序引擎和jdo中做到这一点?

谢谢,

I am using google app engine and jdo for my application.I have a requirement to get the maximum long value of a datastore entity. is there a way to do this in app engine and jdo?

Thanks,

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

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

发布评论

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

评论(3

回梦 2024-12-17 10:12:04

JDOQL:“从 mydomain.MyClass 中选择 longField ORDER BY longField DESC RANGE 0,1”

JDOQL : "SELECT longField FROM mydomain.MyClass ORDER BY longField DESC RANGE 0,1"

凉薄对峙 2024-12-17 10:12:04

AppEngine 数据存储区支持全范围的 Long 值,因此您可以使用 Long.MAX_VALUE 获取最大 long 值。根据 规范 这相当于2^63 - 1,相当于 9,223,372,036,854,775,807。

您可以找到 AppEngine 可支持的所有核心类型的列表 在这里

The AppEngine datastore supports the full range of Long values, so you can use Long.MAX_VALUE to acquire the maximum long value. According to the spec This equates to 2^63 - 1, which is equivalent to 9,223,372,036,854,775,807.

A list of all of the core types that AppEngine can support can be found here.

苦笑流年记忆 2024-12-17 10:12:04

是的,您可以使用以下 GQL 查询:

select *
from MyEntity
order by longField desc
limit 1

其中 MyEntity 是您的数据存储区实体,其字段 longField 包含长值。它将返回 1 个具有 longField 最大值的实体

Yes, you can use following GQL query:

select *
from MyEntity
order by longField desc
limit 1

where MyEntity is your datastore entity that have field longField containing long values. It will return you 1 entity with largest value of longField

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