MongoDB Articles

Page 40 of 111

MongoDB query to convert a string with commas to double

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 840 Views

To convert a string with commas to a double value in MongoDB, use the aggregate pipeline with $split, $reduce, and $convert operators to remove commas and convert the result to a numeric type. Syntax db.collection.aggregate([ { $project: { convertedField: { $convert: { ...

Read More

MongoDB query to add matched key to list after query?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 152 Views

To add matched elements to a list after querying in MongoDB, use the $filter operator within an aggregation pipeline. This allows you to filter array elements based on specific conditions and return only the matching elements. Syntax db.collection.aggregate([ { $addFields: { arrayField: { $filter: { ...

Read More

Create an index for text search in MongoDB

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 209 Views

To create an index for text search in MongoDB, use the createIndex() method with the "text" index type. This enables full-text search capabilities on string fields using the $text operator. Syntax db.collection.createIndex({ fieldName: "text" }); db.collection.find({ $text: { $search: "searchTerm" } }); Sample Data Let us create a collection with sample documents: db.demo331.insertMany([ { "Words": "This is a MySQL" }, { "Words": "THIS is a MongoDB" } ]); { "acknowledged": true, "insertedIds": [ ...

Read More

Restrict returned data in MongoDB to display only specific values from documents

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 436 Views

To restrict returned data in MongoDB, use the projection parameter in the find() method. Use values 1 to include fields and 0 to exclude fields from the query results. Syntax db.collection.find(query, projection) Where: query − Filter criteria (empty {} for all documents) projection − Fields to include (1) or exclude (0) Sample Data Let us create a collection with documents − db.demo330.insertMany([ {"Id": 101, "Name": "Chris", "Age": 21}, {"Id": 102, "Name": "Sam", "Age": 24}, {"Id": 103, "Name": ...

Read More

Using findOneAndUpdate () to update in MongoDB?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 378 Views

The findOneAndUpdate() method updates a single document based on the filter criteria and returns the document (either the original or modified version based on options). Syntax db.collection.findOneAndUpdate(filter, update, options) filter − Query criteria to match the document update − Update operations to perform options − Optional parameters like returnNewDocument, sort, etc. Sample Data Let us create a collection with sample documents − db.demo328.insertMany([ {Name: "Chris", Marks: 67}, {Name: "David", Marks: 78}, {Name: "Bob", Marks: 97} ]); ...

Read More

MongoDB query to set user defined variable into query?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 514 Views

To set user-defined variables in MongoDB queries, use the var keyword to declare variables and reference them directly in your query conditions. Syntax var variableName = "value"; db.collection.find({"fieldName": variableName}); Sample Data db.demo327.insertMany([ {"FirstName": "Chris", "LastName": "Brown"}, {"FirstName": "David", "LastName": "Miller"}, {"FirstName": "John", "LastName": "Doe"}, {"FirstName": "John", "LastName": "Smith"} ]); { "acknowledged": true, "insertedIds": [ ObjectId("5e516952f8647eb59e562076"), ...

Read More

Accessing array values in a MongoDB collection to fetch a specific document

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 287 Views

To access array values in MongoDB and fetch a specific document, use dot notation to query nested fields within arrays. This allows you to search for documents containing specific values in their array elements. Syntax db.collection.find({ "arrayName.fieldName": "value" }); Sample Data Let us create a collection with documents containing ProductDetails arrays ? db.demo326.insertMany([ { "id": 101, "ProductDetails": [ { "ProductId": ...

Read More

MongoDB many insertsupdates without affecting performance?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 231 Views

To perform many inserts and updates in MongoDB without affecting performance, use bulk operations like insertMany() for inserts and proper indexing to optimize query performance. Create indexes on frequently queried fields to speed up both read and write operations. Syntax // Bulk insert db.collection.insertMany([document1, document2, ...]); // Create index for better performance db.collection.createIndex({fieldName: 1}); Sample Data Let us create a collection with multiple documents using insertMany() ? db.demo325.insertMany([ { _id: 101, Name: "Chris", Age: 23 }, { _id: 102, Name: "David", Age: 24 ...

Read More

Using positional operator with hierarchies in MongoDB?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 151 Views

The positional operator in MongoDB allows you to update array elements without knowing their exact index position. The $[] operator updates all array elements, while $ updates the first matching element. Syntax // Update all array elements db.collection.update( { query }, { $set: { "arrayField.$[]": newValue } } ); // Update first matching element db.collection.update( { "arrayField": matchValue }, { $set: { "arrayField.$": newValue } } ); Sample Data db.demo324.insertOne({ "ListOfValues": [10, ...

Read More

Array index or indexing inner items in MongoDB to fetch values

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 167 Views

MongoDB uses dot notation to access nested fields and array elements. You can create indexes on nested fields to improve query performance when searching within embedded documents or arrays. Syntax // Create index on nested field db.collection.createIndex({"field.nestedField": 1}); // Query nested field db.collection.find({"field.nestedField": "value"}); Sample Data Setup Let's create a collection with nested documents and add an index on the nested field ? db.demo323.insertMany([ {"details": {"Name": "Chris", "Age": 34}}, {"details": {"Name": "David", "Age": 31}}, {"details": {"Name": "Bob", "Age": 28}} ...

Read More
Showing 391–400 of 1,106 articles
« Prev 1 38 39 40 41 42 111 Next »
Advertisements