在MongoDB中,可以使用$min
操作符來查詢集合中的最小值。
語法如下:
db.collection.aggregate([
{
$group: {
_id: null,
minValue: { $min: "$fieldName" }
}
}
])
其中,collection
是要查詢的集合的名稱,fieldName
是要計算最小值的字段名稱。
以下是一個示例,假設有一個名為students
的集合,其中包含name
和age
字段。要查詢age
字段的最小值:
db.students.aggregate([
{
$group: {
_id: null,
minValue: { $min: "$age" }
}
}
])
查詢結果將以如下形式返回:
{ "_id" : null, "minValue" : 18 }
上述查詢返回了age
字段的最小值18。