MongoDB $exp 运算符
MongoDB 提供了不同类型的算术表达式运算符,用于聚合管道阶段$exp运算符就是其中之一。此运算符用于将欧拉数(即e )提高到指定的指数并返回结果。
句法:
{ $exp: }
在这里,指数是一个有效的表达式,直到它解析为一个数字。
- 如果输入的值解析为 null,则此运算符将返回 null。
- 如果输入的值解析为 NaN,则此运算符将返回 NaN。
- 如果输入的值引用了缺失的字段,则此运算符将返回 null。
例子:
在以下示例中,我们正在使用:
Database: GeeksforGeeks
Collection: example
Document: two documents that contain the details of the shapes in the form of field-value pairs.
使用 $exp 运算符:
在此示例中,我们将找到侧字段值的指数。
db.example.aggregate([ {$match: {name: "Square"}},
... {$project: {result: {$exp: "$side"}}}])
在嵌入式文档中使用 $exp 运算符:
在这个例子中,我们将找到measurement.height 和measurement.width 字段值的差的指数。
db.example.aggregate([ {$match: {name: "Rectangle"}},
... {$project: {result: {$exp:
... {$subtract: ["$measurement.height", "$measurement.width"]}}}}])