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();
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();