gpt4 book ai didi

java - 如何在 mongo 查询中找到最小的数字?

转载 作者:行者123 更新时间:2023-12-02 00:23:28 24 4
gpt4 key购买 nike

我的 mongo 数据库中有以下对象:

{
"type" : "timetype"
"time" : "18"
}
{
"type" : "timetype"
"time" : "5"
}
{
"type" : "timetype"
"time" : "43"
}
{
"type" : "timetype"
"time" : "23"
}

我的java代码如下:

BasicDBObject query = new BasicDBObject();
query.put("type", "timetype");

//I don't know what to put in the (...)
DBCursor cursor = Collection.find(query).sort(...).limit(1);

我想在我的 mongo 数据库中找到满足查询参数的时间最短的条目,但我不知道要排序什么才能实现这一点。

最佳答案

类似的东西

Collection.find(query).sort(new BasicDBObject( "time" , 1 )).limit(1);

应该可以。

关于java - 如何在 mongo 查询中找到最小的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10485497/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com