Open In App
Related Articles

MongoDB $sqrt Operator

Improve Article
Improve
Save Article
Save
Like Article
Like

MongoDB provides different types of arithmetic expression operators that are used in the aggregation pipeline stages $sqrt operator is one of them. This operator is used to find the square root of a positive number and returns the result as a double.

Syntax: 

{ $sqrt: <number> }

Here, the number is a valid expression until it resolves to a non-negative number. 

  • If the entered value is null, then this operator will return null.
  • If the entered value is NaN, then this operator will return NaN.
  • If the entered value is a missing field, then this operator will return null.

Examples:

In the following examples, we are working with:

Database: GeeksforGeeks

Collection: example

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

Finding the square root of the field using $sqrt operator:

In this example, we are going to find the square root of the value of the side field in the Square document using $sqrt operator.

db.example.aggregate([{$match:{name: "Square"}},
... {$project: {squareRoot: {$sqrt: "$side"}}}])

Finding the square root of the field in the embedded document using $sqrt operator:

In this example, we are going to find the square root of the sum of the values of the measurement.height and measurement.width fields in the Rectangle document using $sqrt operator.

db.example.aggregate([{$match:{name: "Rectangle"}},
... {$project: {squareRoot: {$sqrt:{$add: ["$measurement.height",
                                          "$measurement.width"]}}}}])

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 28 Jul, 2020
Like Article
Save Article
Previous
Next
Similar Reads