From charlesreid1

Revision as of 02:42, 1 February 2018 by Admin (talk | contribs) (Created page with "==Mongo Collections== Collections are the NoSQL equivalent to tables. ==Drop collection== ===Drop collection from mongo shell=== From the shell, call the drop() method on...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Mongo Collections

Collections are the NoSQL equivalent to tables.

Drop collection

Drop collection from mongo shell

From the shell, call the drop() method on the collection you want to drop:

> db.collection.drop()

Flags