Database
-
March 23, 2017
Advantages of MongoDB over RDBMS
Overview MongoDB is a cross-platform, document oriented database that provides high performance, high availability, and easy scalability. MongoDB works on concept of collection and document. Database is a physical container for collecti...
-
March 23, 2017
Some commands for MongoDB
MongoDB Commands Create or switch to a database: use DATABASE_NAME Check currently selected database: db Check database lists: show dbs Drop database: db.dropDatabase() Create collection: db.createCollec...