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"})
Java Server Pages (JSP) is a powerful technology used to develop dynamic web applications by…
Spring Boot is a powerful backend framework for developing Java-based web applications. Pairing it with…
The Rise of Spring Boot As technology advances, frameworks and tools that developers depend on…
Laravel Print Version: An Essential Guide Laravel is a powerful PHP framework widely used for…
Laravel cache clear , you can use the Artisan command-line tool that comes with Laravel.…
Vue.js is a powerful JavaScript framework for creating dynamic user interfaces, while Laravel is a…