What are collection commands in MongoDB?

The MongoDB collection is a group/bunch of documents, and collection name suggested to be plural.

db.createCollection(“collection.Name”);

To list all collections we use:

show collections;

To drop a collection we use:

db.collection_name.drop();