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.
db.getCollection('employee').find({})
db.getCollection('employee').find({ name : "John" })
db.getCollection('employee').find({ name : "John" , age : 35 })
db.getCollection('employee').find( { $or: [ { age: 30}, { name: "John" } ] })
db.getCollection('records').insert( { name : "Kishan",age : 24,salary : 45000 })
db.getCollection('employee').update( {name : "Kishan"}, { $set: {age:34, salary: 40000}});
db.getCollection('employee').remove({ name : "Kishan"})
Introduction to Grocery Inventory Apps Managing grocery inventory can be a daunting task, but with…
This article explain how to make a Fish Inventory Management App in Angular.this app explain…
Introduction to Fish Inventory Management In the aquaculture industry, managing fish inventory is crucial for…
Introduction to Java GUI CRUD Java is a powerful programming language widely used for building…
Introduction to Login Form Design Designing an effective and beautiful login form is crucial for…
Introduction In today creating a responsive login form is essential for providing a seamless user…