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

JSP to JSP Communication: A Complete Guide to Dynamic Java Web Development

Java Server Pages (JSP) is a powerful technology used to develop dynamic web applications by…

2 days ago

Which Frontend Framework to Use with Spring Boot?

Spring Boot is a powerful backend framework for developing Java-based web applications. Pairing it with…

3 days ago

Is Java Spring Boot Still Relevant in 2025?

The Rise of Spring Boot As technology advances, frameworks and tools that developers depend on…

3 days ago

How to Check Laravel Print Version: A Simple Guide

Laravel Print Version: An Essential Guide Laravel is a powerful PHP framework widely used for…

3 days ago

How to Laravel cache clear

Laravel cache clear , you can use the Artisan command-line tool that comes with Laravel.…

4 days ago

Installing Vue.js in Laravel Project

Vue.js is a powerful JavaScript framework for creating dynamic user interfaces, while Laravel is a…

4 days ago