我的 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 数据库中找到满足查询参数的最短时间的条目,但我不知道要放置什么来实现这一点。