MongoDB

MongoDB Cheat Sheet

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

db

Create Or Switch Database

use acme

Drop

db.dropDatabase()

Create Collection

db.createCollection('posts')

Show Collections

show collections

Insert 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

Greater & Less Than

Last updated

Was this helpful?