Browsing Category
Mongo
4 posts
Joining collections in MongoDB
For the purposes of this article, I have created a collection called mongo2 and have furnished it with…
Simple Querying & Aggregation Of MongoDB Collections
Return all documents where one element in the array of likes is ‘burgers’ db.mongo.find({Likes : “burgers”}).forEach(printjson) Return documents…
Setting up MongoDB, creating a database, collection & inserting records
Getting started with MongoDB is pretty straight forward. The first thing to do is to setup a free…
Introduction to MongoDB
MongoDB is a document oriented database and is one of the leaders of the NoSQL revolution. To summarize…