Last Updated : 15 Jul, 2025
The MongoDB Bitwise Update Operator allows for efficient manipulation of integer fields within MongoDB documents through bitwise operations. In this article, We will learn about the MongoDB Bitwise Update Operator in detail by understanding various examples in detail.
MongoDB Bitwise Update OperatorMongoDB Bitwise Update Operator allows performing bitwise operations on integer fields in MongoDB documents. It includes operators like $bit
, which can be used to update specific bits within integer fields using bitwise operations such as AND (&
), OR (|
), XOR (^
), and NOT (~
). This enables efficient manipulation of binary data or flags stored within integer fields directly in the database.
Syntax:
{ $bit: { <field1>: { <or|and|xor>: <int> } } }Important Points:
In the following examples, we are working with:
Database: GeeksforGeeks
Collection: bitexample
Document: three documents that contain the data in the form of field-value pairs.
Output:
Example 1: Bitwise ORIn this example, we are using update() method to update the value of number field of the document(id: g_f_g_2) to the result(i.e. NumberLong(13) or 1101) of a bitwise or operation perform between the current value NumberLong(5) (i.e. 0101) and NumberInt(9) (i.e. 1001):
db.bitexample.update(
{ _id: "g_f_g_2" },
{ $bit: { number: { or: NumberInt(9) } } }
);
Output:
Exampe 2: Bitwise ANDIn this example, we are using update() method to update the value of number field of the document(id: g_f_g_1) to the result(i.e. NumberInt(1) or 0001) of a bitwise and operation perform between the current value NumberInt(11) (i.e. 1011) and NumberInt(5) (i.e. 0101):
db.bitexample.update({_id: "g_f_g_1"},
{$bit: {number: {and: NumberInt(5)}}})
Output:
Example 3: Bitwise XORIn this example, we are using update() method to update the value of number field of the document(id: g_f_g_3) to the result(i.e. NumberLong(10) or 1010) of a bitwise xor operation perform between the current value NumberLong(7) (i.e. 0111) and NumberLong(13) (i.e. 1101):
db.bitexample.update(
{ _id: "g_f_g_3" },
{ $bit: { number: { xor: NumberLong(13) } } }
);
Output:
ConclusionThe MongoDB Bitwise Update Operator provides a powerful means of performing bitwise operations on integer fields within MongoDB documents. By using operators like $bit
, developers can efficiently manage binary data or flags, ensuring targeted and efficient updates. This functionality is particularly useful in scenarios requiring precise control over individual bits within an integer field, promoting robust and efficient data handling within MongoDB.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4