by Yogesh | Oct 13, 2018 | mongoDB tutorial
update , remove and drop queries in mongodb Following command will update only single document(Default behaviour) db.info.update({},{$set : { age : 40 }}) Following command will update only Multiple document db.info.update({},{$set : { age : 40 }} , {multi : true})...
by Yogesh | Oct 12, 2018 | mongoDB tutorial
mongoDB basic queries Go to bin folder of mongo To Start Mongo server : click on mongod To Start Console for working ; click on mongo Start Writing queries Note : Mongo queries are case sensitive To Show All databases: show dbs To use database: use [databasename] To...