MongoDB 提供了不同類型的中使用的算術表達式運算符聚合管道階段和$log 操作符就是其中之一。這操作員用於查找指定基數中數字的對數,並以雙精度形式返回結果。
用法:
{ $log: [ <number>, <base> ] }
這裏,數字是一個有效的表達式,隻要它解析為一個非負數,而 base 是一個有效的表達式,直到它解析為一個正數大於1。
- 如果輸入的值為空,則此運算符將返回空。
- 如果輸入的值為 NaN,則此運算符將返回 NaN。
- 如果輸入的值是缺失字段,則此運算符將返回 null。
例子:
在以下示例中,我們正在使用:
Database: GeeksforGeeks
Collection:example
Document: two documents that contain the details of the shapes in the form of field-value pairs.
使用 $log 運算符:
在這個例子中,我們將找到值的日誌的方形文檔中的邊字段。這裏,的基值是 10。
db.example.aggregate([{$match:{name:"Square"}}, ... {$project:{side:1, logSide:{$log:["$side", 10]}}}])
在嵌入文檔中使用 $log 運算符:
在這個例子中,我們將找到值的日誌測量寬度矩形文檔中的字段。這裏,的基值是 2。
db.example.aggregate([{$match:{name:"Rectangle"}}, ... {$project:{"measurement.width":1, logWidth:{$log:["$measurement.width", 2]}}}])
相關用法
- MongoDB $mul用法及代碼示例
- MongoDB $rename用法及代碼示例
- MongoDB $setOnInsert用法及代碼示例
- MongoDB $ln用法及代碼示例
- MongoDB $floor用法及代碼示例
- MongoDB $divide用法及代碼示例
- MongoDB $add用法及代碼示例
- MongoDB $ceil用法及代碼示例
- MongoDB $sqrt用法及代碼示例
- MongoDB $multiply用法及代碼示例
- MongoDB $mod用法及代碼示例
- MongoDB $log10用法及代碼示例
- MongoDB $abs用法及代碼示例
- MongoDB $strcasecmp用法及代碼示例
- MongoDB $toLower用法及代碼示例
注:本文由純淨天空篩選整理自ankita_saini大神的英文原創作品 MongoDB $log Operator。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。