My MongoDB Cheat Sheet Show All Databases show dbs Show Current Database db Create Or Switch Database use claim-now Show Collections show collections Get All Rows From A Collection "users" db.users.find().pretty() Drop db.dropDatabase() Create Collection db.createCollection('posts')