DEV Community

yaswanthteja
yaswanthteja

Posted on

All MongoDb Collection Commands

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
Enter fullscreen mode Exit fullscreen mode
  • Create a collection named 'comments'
db.createCollection('comments')
Enter fullscreen mode Exit fullscreen mode
  • Drop a collection named 'comments'
db.comments.drop()
Enter fullscreen mode Exit fullscreen mode

clickhere to see MongoDb commands

Top comments (0)