MongoDB
MongoDB Cheat Sheet
MongoDB Cheat Sheet
Show All Databases
show dbsShow Current Database
dbCreate Or Switch Database
use acmeDrop
db.dropDatabase()Create Collection
db.createCollection('posts')Show Collections
show collectionsInsert Row
Insert Multiple Rows
Get All Rows
Get All Rows Formatted
Find Rows
Sort Rows
Count Rows
Limit Rows
Chaining
Foreach
Find One Row
Find Specific Fields
Update Row
Update Specific Field
Increment Field ($inc)
Rename Field
Delete Row
Sub-Documents
Find By Element in Array ($elemMatch)
Add Index
Text Search
Greater & Less Than
Last updated
Was this helpful?