MongoDB (CRUD)
NOSQL:-[written in c++] table collection[no structure schema] row document column field table join embeded document open cmd and type mongo to run mongodb database. show dbs use databasename show collections db.createCollection("mycollection") db.dropDatabase()//make sure u have done use database then drop db.COLLECTION_NAME.drop() Commands:------- use databasename .....to create database if present it will switch to database otherwise it will create new.( database name is Case Sensitive ) To remove database: first check by using db in which databse you are then db.dropDatabase(); Then at least one collection(table) we have to create for :- show dbs (show databases) command to show database. or show databases; //minimum one collection is mandatory[ one table is mandatory] creating and Dropping collection: db.createCollection("name of collection"); it has to be in "" double co...