当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


MongoDB $ln用法及代码示例


MongoDB 提供了不同类型的中使用的算术表达式运算符聚合管道阶段$ln 操作符就是其中之一。这操作员用于查找数字的自然对数,并以双精度形式返回结果。

用法:

{ $ln: <number> }

在这里,数字是一个有效的表达式,直到它解析为一个非负数。

  • 如果输入的值为空,则此运算符将返回空。
  • 如果输入的值为 NaN,则此运算符将返回 NaN。
  • 如果输入的值是缺失字段,则此运算符将返回 null。

例子:

在以下示例中,我们正在使用:



Database: GeeksforGeeks

Collection:example

Document: two documents that contain the details of the shapes in the form of field-value pairs.

使用 $ln 运算符:

在这个例子中,我们将找到自然值的对数方形文档中的边字段。

db.example.aggregate([{$match:{name:"Square"}},
... {$project:{side:1, naturalLog:{$ln:"$side"}}}])

在嵌入文档中使用 $ln 运算符:

在这个例子中,我们将找到自然值的对数测量高度矩形文档中的字段。

db.example.aggregate([{$match:{name:"Rectangle"}},
... {$project:{"measurement.height":1, 
      naturalLog:{$ln:"$measurement.height"}}}])

相关用法


注:本文由纯净天空筛选整理自ankita_saini大神的英文原创作品 MongoDB $ln Operator。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。