Is there a floor function in Mongodb aggregation framework?(Mongodb聚合框架中是否有地板功能?)
问题描述
我尝试在 mongodb 中进行一些整数数学运算,但遇到了一些问题.有没有办法在 mongo db 聚合框架中向上或向下舍入双精度数?
I try to do some integer math in mongodb and have some problems. Is there a way to round doubles up or down in the mongo db aggregation framework?
推荐答案
根据 Stennie 的评论,不支持 floor 和 ceiling 方法.
As per the comment from Stennie, the floor and ceiling methods are not supported.
根据我上面的评论,我能找到的最佳解决方案就是执行如下所示的操作: (num-mod(num,1)) 应该产生与 floor 函数相同的结果.
And as per my comment above, the best solution that I could find was just doing an operation that looks like: (num-mod(num,1)) which should yield the same result as the floor function.
这篇关于Mongodb聚合框架中是否有地板功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Mongodb聚合框架中是否有地板功能?
基础教程推荐
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 降序排序:Java Map 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01