MongoDB use the db.createCollection() method to create a new collection:
db.createCollection("name_of_collection")Replace name_of_collection By actual name of collection name.
For Show collection You can use
show collectionsRename Collection:
db.oldcollection_name.renameCollection("new_name")Drop Collection
db.collection_name.drop()