0

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

4

1 回答 1

3

类似的东西

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

应该管用。

于 2012-05-07T16:32:40.453 回答