DEV Community

Cover image for Awesome MongoDB .
Subhash Tyler 🚀
Subhash Tyler 🚀

Posted on

Awesome MongoDB .

MongoDB is an open-source document based database and leading NoSQL database. It is written in C++.
MongoDB uses JSON-like documents with optional schemas.

some frequently used MongoDB commands:-

db.createCollection("testcc")
db.testcc.drop()

show collections
db.student.find()

use test
db.dropDatabase()

Date()
db.student.find().pretty()

Top comments (0)