对 JDOQL 中的值进行舍入

发布于 2024-09-26 14:10:35 字数 69 浏览 4 评论 0原文

我在 GAE 数据存储中有数据。我想针对该数据编写一个 JDOQL,该数据采用其中一列并对其值进行四舍五入。我可以这样做吗?

I've got data in the GAE data store. I want to write a JDOQL against that data that takes one of the columns and rounds the value of it. Can I do this?

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

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

发布评论

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

评论(1

梦魇绽荼蘼 2024-10-03 14:10:35

您的意思是,您可以更新数据存储中的数据以获得四舍五入的值吗?如果是这样,当然。只需查询它们,更新该属性,然后< a href="http://code.google.com/appengine/docs/java/datastore/jdo/creatinggettinganddeletingdata.html#Updating_an_Object" rel="nofollow">将它们存储回数据存储区中。

如果您的意思是,您可以编写一个根据舍入值而不是实际值进行过滤的查询,那么也是可以的。您只需调整查询和过滤器值即可。例如,如果您希望所有实体的舍入值 >= 5,则可以使用 4.5 作为过滤器值:

Query query = pm.newQuery(Foo.class, "property >= 4.5");

如果您希望所有实体的舍入值恰好为 5,则可以查询 4.5 和 5.5 之间的所有实体:

Query query = pm.newQuery(Foo.class, "property >= 4.5 && property < 5.5");

do you mean, can you update the data in the datastore to have the rounded value? if so, sure. just query for them, update that property, and store them back in the datastore.

if you mean, can you write a query that filters based on the rounded value instead of the real value, then also yes. you'd just adjust your queries and filter values. for example, if you want all entities with a rounded value >= 5, you'd use 4.5 as the filter value:

Query query = pm.newQuery(Foo.class, "property >= 4.5");

if you want all entities with a rounded value of 5 exactly, you'd query for everything between 4.5 and 5.5:

Query query = pm.newQuery(Foo.class, "property >= 4.5 && property < 5.5");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文