DEV Community

yaswanthteja
yaswanthteja

Posted on

3 2

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)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay