Created
May 5, 2019 15:42
-
-
Save Abhinay-g/74f8114a023ff1dd32841fb4c81db168 to your computer and use it in GitHub Desktop.
MongoDB Delete
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Delete one or many items from collection > db.collection.deleteOne/deleteMany(--findCondition--) | |
| Delete Collection > db.collection.deleteMAny({}) | |
| Delete Entire Collection [Admin task] >>>> db.collection.drop() | |
| Delete entire Database [Admin TAsk] >>>> db.deleteDatabase() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment