mongodb查询最大值


客户端(Robomongo)查询方式:

db.getCollection('test').find({}).sort("id":1).limit(1)

sort("id":1): 正序

sort("id":-1): 倒序

你可能感兴趣的:(mongodb)