Node JS

Mongodb Tutorial for Beginners

In this tutorials will teach about mongodb database for beginners step by step. We have cover about the basic queries insert,update,find,delete,and,or.

View the employee records queries

db.getCollection('employee').find({})

Find queries

db.getCollection('employee').find({  name : "John" })

And Check both queries correct works

db.getCollection('employee').find({ name : "John" , age : 35 })

OR Check  either on correct works

db.getCollection('employee').find( 
{ $or: [ { age: 30}, { name: "John" } ] 
})

Insert queries

db.getCollection('records').insert( { name : "Kishan",age : 24,salary : 45000 })

Update queries

db.getCollection('employee').update( 
{name : "Kishan"},
{ $set: {age:34, salary: 40000}});

Delete queries

db.getCollection('employee').remove({ name : "Kishan"})

I have attached the video tutorial below it will help you  to do this  step by step.

 

admin

Recent Posts

Creating Grocery Inventory App Using React

Introduction to Grocery Inventory Apps Managing grocery inventory can be a daunting task, but with…

2 days ago

Fish Inventory Shop Management System in Angular

This article explain how to make a Fish Inventory Management App in Angular.this app explain…

1 week ago

Fish Inventory Management with React

Introduction to Fish Inventory Management In the aquaculture industry, managing fish inventory is crucial for…

1 week ago

Java GUI CRUD for Beginners

Introduction to Java GUI CRUD Java is a powerful programming language widely used for building…

1 week ago

Creating Beautiful Login Form Design Using React

Introduction to Login Form Design Designing an effective and beautiful login form is crucial for…

2 weeks ago

Creating Responsive Login Form with React

Introduction In today creating a responsive login form is essential for providing a seamless user…

2 weeks ago