db.people.insert({ name: "Roshni", age: 18, hobbies: ["Coding", "Gaming", "Cooking"], hungry: false}) db.people.insert({ name: "Bhavana", age: 19, hobbies: ["Sleeping", "playing", "eating"], hungry: true}) db.people.insert({ name: "Sravya", age: 20, hobbies: ["Coding", "Sitting", "Reading"], hungry: true}) db.people.insert({ name: "Ganesh", age: 10, hobbies: ["Writing", "Gaming", "Photography"], hungry: false}) db.people.insert({ name: "Ramu", age: 25, hobbies: ["Sleeping", "playing", "eating"], hungry: true}) db.people.insert({ name: "Sita", age: 30, hobbies: ["Gardening", "Stitching", "Acting"],}) db.people.find().pretty()
Write, Run & Share MongoDB queries online using OneCompiler's MongoDB online editor and compiler for free. It's one of the robust, feature-rich online editor and compiler for MongoDB. Getting started with the OneCompiler's MongoDB editor is really simple and pretty fast. The editor shows sample boilerplate code when you choose language as 'MongoDB' and start writing queries to learn and test online without worrying about tedious process of installation.
MongoDB is a cross platform document oriented NoSQL database.
db.collection.insert()
: Using insert
you can either insert one document or array of documentsdb.employees.insert( {empId: 3, name: 'Ava', dept: 'Sales' });
db.collection.insertOne()
: Inserts one documentdb.employees.insertOne( {empId: 4, name: 'Nick', dept: 'Accounting' });
db.collection.insertMany
: Inserts multiple documentsdb.employees.insertMany([
{empId: 1, name: 'Clark', dept: 'Sales' },
{empId: 2, name: 'Dave', dept: 'Accounting' }
]);
db.collection.update()
: Updates one or more than one document(s) in collection based on matching document and based on multi
optiondb.employees.update(
{empId: 3 },
{ $set: { region: "Asia" } }
);
db.collection.updateOne()
: Updates a single document in collection based on matching documentdb.employees.updateOne(
{empId: 2 },
{ $set: { region: "Asia" } }
);
db.collection.updateMany()
: Updates multiple documents in collection based on the condition.db.employees.updateMany(
{ dept: 'Sales'},
{ $set: { region: "US" } }
);
db.collection.deleteOne(<filter>, <options>)
: Deletes a Single document from collectiondb.employees.deleteOne({ empId: 1})
db.collection.deleteMany(<filter>, <options>)
: Deletes all documents with matching filterdb.employees.deleteMany({ dept: 'Sales'})