- db.customers.remove({}).indexes();
- db.customers.remove({});
- db.customers.drop();
- db.customers.delete();
Using the MongoDB shell, how do you remove the customer collection and its indexes?
June 25, 2021June 25, 2021
0 Comment