MongoDB 提供了不同类型的中使用的算术表达式运算符聚合管道阶段$sqrt操作符就是其中之一。这操作员用于查找正数的平方根,并以双精度形式返回结果。
用法:
{ $sqrt: <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.
寻找广场使用 $sqrt 运算符的字段根:
在这个例子中,我们将找到值的平方根的使用 $sqrt 运算符的 Square 文档中的 side 字段。
db.example.aggregate([{$match:{name:"Square"}}, ... {$project:{squareRoot:{$sqrt:"$side"}}}])
寻找广场使用 $sqrt 操作符嵌入文档中字段的根:
在这个例子中我们将找到值之和的平方根测量高度和测量宽度使用 $sqrt 运算符在矩形文档中的字段。
db.example.aggregate([{$match:{name:"Rectangle"}}, ... {$project:{squareRoot:{$sqrt:{$add:["$measurement.height", "$measurement.width"]}}}}])
相关用法
- MongoDB $mul用法及代码示例
- MongoDB $rename用法及代码示例
- MongoDB $setOnInsert用法及代码示例
- MongoDB $ln用法及代码示例
- MongoDB $floor用法及代码示例
- MongoDB $divide用法及代码示例
- MongoDB $add用法及代码示例
- MongoDB $ceil用法及代码示例
- MongoDB $multiply用法及代码示例
- MongoDB $mod用法及代码示例
- MongoDB $log10用法及代码示例
- MongoDB $log用法及代码示例
- MongoDB $abs用法及代码示例
- MongoDB $strcasecmp用法及代码示例
- MongoDB $toLower用法及代码示例
注:本文由纯净天空筛选整理自ankita_saini大神的英文原创作品 MongoDB $sqrt Operator。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。