In this post, we will see a comprehensive list of all the MongoDB Collection (tables in sql) commands you will ever need as a MongoDB beginner.
I will assume that you are working inside a collection named 'comments' on a MongoDB database of your choice
Collection Commands
- Show Collections
show collections
- Create a collection named 'comments'
db.createCollection('comments')
- Drop a collection named 'comments'
db.comments.drop()
Top comments (0)