MongoDB 提供了不同类型的中使用的算术表达式运算符聚合管道阶段$pow操作符就是其中之一。这操作员用于查找指定 index 的数字并返回结果。
用法:
{ $pow:[ <number>, <exponent> ] }
在这里,数字和 index 是有效的表达式,直到它解析为数字。
- 如果输入的值解析为 null,则此运算符将返回 null。
- 如果输入的值解析为 NaN,则此运算符将返回 NaN。
- 如果输入的值引用了缺失的字段,则此运算符将返回 null。
结果将与输入的类型相同,但可以在输入时更改不能像在那种类型中准确表示下列的案例:
- 这个如果结果表示为 64 位整数,则 32 位整数将转换为 64 位整数。
- 这个如果结果未表示为 64 位整数,则 32 位整数将转换为双精度数。
- 如果结果未表示为 64 位整数,则 64 位整数将转换为 double。
例子:
在以下示例中,我们正在使用:
Database: GeeksforGeeks
Collection:example
Document: two documents that contain the details of the shapes in the form of field-value pairs.
使用 $pow 运算符:
在这个例子中,我们将使用 $pow 运算符找到正方形的面积(即 (side)2 )。这里,$pow 操作符包含两个参数,第一个是边域的值(即 2),第二个是 index (即 2)。
db.example.aggregate([ ... {$match:{name:"Square"}}, ... {$project:{area:{$pow:["$side", 2]}}}])
在嵌入式文档中使用 $pow 运算符:
在这个例子中,我们将找到 (measurement.height +measurement.width)2 的值 使用 $pow 运算符。这里,$pow 运算符包含两个参数,第一个是measurement.height 和measurement.width 字段值的总和,第二个是 index (即2)。
db.example.aggregate([ {$match:{name:"Rectangle"}}, ... {$project:{result: ... {$pow:[{$add:["$measurement.height", "$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 $log用法及代码示例
- MongoDB $abs用法及代码示例
- MongoDB $strcasecmp用法及代码示例
注:本文由纯净天空筛选整理自ankita_saini大神的英文原创作品 MongoDB $pow Operator。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。