对 JDOQL 中的值进行舍入
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是,您可以更新数据存储中的数据以获得四舍五入的值吗?如果是这样,当然。只需查询它们,更新该属性,然后< a href="http://code.google.com/appengine/docs/java/datastore/jdo/creatinggettinganddeletingdata.html#Updating_an_Object" rel="nofollow">将它们存储回数据存储区中。
如果您的意思是,您可以编写一个根据舍入值而不是实际值进行过滤的查询,那么也是可以的。您只需调整查询和过滤器值即可。例如,如果您希望所有实体的舍入值 >= 5,则可以使用 4.5 作为过滤器值:
如果您希望所有实体的舍入值恰好为 5,则可以查询 4.5 和 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:
if you want all entities with a rounded value of 5 exactly, you'd query for everything between 4.5 and 5.5: