• MongoDB

Count Method: MongoDB

Let's learn to use count() method in MongoDB. Count method outputs numeric value of the number of documents retrieved. >…

  • MongoDB

Cursor Object: MongoDB

Lets have a deeper look into the MongoDB cursor object. Documents in our collection test database, names collection. > use…

  • MongoDB

Dot Notation To Access Sub Document: MongoDB

Today lets see how we can access sub-document or sub-object using Dot notation, in MongoDB. Documents in our collection nesting…

  • MongoDB

$and operator: MongoDB

Lets quickly learn about using $and operator in MongoDB. Related Read: $exists, $type, $regex operators: MongoDB $or (Union) Operator: MongoDB…

  • MongoDB

$or (Union) Operator: MongoDB

Today lets learn about $or operator. In set theory, the union (denoted by ∪) of a collection of sets is…

  • MongoDB

$exists, $type, $regex operators: MongoDB

In today's video tutorial, lets learn to use $exists, $type and $regex operators. Documents in our collection test database, names…

  • MongoDB

String Comparison: MongoDB

Today we shall see how we can compare strings using comparison operators like, $ne – not equal to $gt –…

  • node.js

Remove / Delete Data From MongoDB: Node.js

Today lets learn how to delete documents from MongoDB collection via your node.js application. In this video tutorial, I'll show…

  • MongoDB

MongoDB Management Service To Rescue Your Application!

In today's tutorial we'll be looking at: Installing Python Installing PyMongo (Note: PyMongo is a python driver for MongoDB) ..and…

  • node.js

Update / Edit Data In MongoDB: Node.js

Today lets look at editing and updating user entered data via Node.js application. Related Read: Connecting To MongoDB Using Mongoose:…