Docs Menu
Docs Home
/
MongoDB Manual
/ /

Update Operators

On this page

  • Compatibility
  • Syntax
  • Update Operators
  • Updates with Aggregation Pipeline

The following modifiers are available for use in update operations such as db.collection.updateMany() and db.collection.findAndModify().

You can use update operators for deployments hosted in the following environments:

  • MongoDB Atlas: The fully managed service for MongoDB deployments in the cloud

Specify update operators in the following form:

{
<operator1>: { <field1>: <value1>, ... },
<operator2>: { <field2>: <value2>, ... },
...
}

Starting in MongoDB 5.0, update operators process document fields with string-based names in lexicographic order. Fields with numeric names are processed in numeric order.

Consider this example $set command:

{ $set: { "a.2": <new value>, "a.10": <new value>, } }

In MongoDB 5.0 and later, "a.2" is processed before "a.10" because 2 comes before 10 in numeric order.

Name
Description

Sets the value of a field to current date, either as a Date or a Timestamp.

Increments the value of the field by the specified amount.

Only updates the field if the specified value is less than the existing field value.

Only updates the field if the specified value is greater than the existing field value.

Multiplies the value of the field by the specified amount.

Renames a field.

Sets the value of a field in a document.

Sets the value of a field if an update results in an insert of a document. Has no effect on update operations that modify existing documents.

Removes the specified field from a document.

Name
Description

Acts as a placeholder to update the first element that matches the query condition.

Acts as a placeholder to update all elements in an array for the documents that match the query condition.

Acts as a placeholder to update all elements that match the arrayFilters condition for the documents that match the query condition.

Adds elements to an array only if they do not already exist in the set.

Removes the first or last item of an array.

Removes all array elements that match a specified query.

Adds an item to an array.

Removes all matching values from an array.

Name
Description

Modifies the $push and $addToSet operators to append multiple items for array updates.

Modifies the $push operator to specify the position in the array to add elements.

Modifies the $push operator to limit the size of updated arrays.

Modifies the $push operator to reorder documents stored in an array.

Name
Description

Performs bitwise AND, OR, and XOR updates of integer values.

To create expressive update statements, such as conditional updates based on current field values or single-field updates that use the value of another field, you can perform updates with an aggregation pipeline.

For syntax and examples, see Updates with Aggregation Pipeline.

Back

$topN