Skip to main content

how to delete the collection in mongodb

 Delete the collection in mongodb: 

Syntex:

use database;

db.collectionName.drop(); this commend delete the collection in mongodb. 

Example: 

db.products.drop();