show collections in mongodb
db.getCollectionNames()
mongodb show database command linux
show databases show dbs
mongo shell commands
show dbs # <=> Print a list of all databases on the server. use &lt;db> # <=> Switch current database to <db> show collections # <=> Print a list of all collections for current database. db.people.insert({name:"Ashwin",gender:"m"}) # <=> Inserts a new "person" collection with a new object in that collection db.people.find(<any attributes or none>) # <=> Find all persons in the collection db.people.update({name:"Ashwin"},{gender:"f"}) # <=> Updates the selected (1st parameter) person with new value(2nd parameter) db.people.remove({name:"Ashwin"}) # <=> Remove where name is "Ashwin" db.people.drop() # <=> Delete the "people" collection
MongoDB commands
# 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 ``` db.posts.insert({ title: 'Post One', body: 'Body of post one', category: 'News', tags: ['news', 'events'], user: { name: 'John Doe', status: 'author' }, date: Date() }) ``` ## Insert Multiple Rows ``` db.posts.insertMany([ { title: 'Post Two', body: 'Body of post two', category: 'Technology', date: Date() }, { title: 'Post Three', body: 'Body of post three', category: 'News', date: Date() }, { title: 'Post Four', body: 'Body of post three', category: 'Entertainment', date: Date() } ]) ``` ## Get All Rows ``` db.posts.find() ``` ## Get All Rows Formatted ``` db.posts.find().pretty() ``` ## Find Rows ``` db.posts.find({ category: 'News' }) ``` ## Sort Rows ``` # asc db.posts.find().sort({ title: 1 }).pretty() # desc db.posts.find().sort({ title: -1 }).pretty() ``` ## Count Rows ``` db.posts.find().count() db.posts.find({ category: 'news' }).count() ``` ## Limit Rows ``` db.posts.find().limit(2).pretty() ``` ## Chaining ``` db.posts.find().limit(2).sort({ title: 1 }).pretty() ``` ## Foreach ``` db.posts.find().forEach(function(doc) { print("Blog Post: " + doc.title) }) ``` ## Find One Row ``` db.posts.findOne({ category: 'News' }) ``` ## Find Specific Fields ``` db.posts.find({ title: 'Post One' }, { title: 1, author: 1 }) ``` ## Update Row ``` db.posts.update({ title: 'Post Two' }, { title: 'Post Two', body: 'New body for post 2', date: Date() }, { upsert: true }) ``` ## Update Specific Field ``` db.posts.update({ title: 'Post Two' }, { $set: { body: 'Body for post 2', category: 'Technology' } }) ``` ## Increment Field (\$inc) ``` db.posts.update({ title: 'Post Two' }, { $inc: { likes: 5 } }) ``` ## Rename Field ``` db.posts.update({ title: 'Post Two' }, { $rename: { likes: 'views' } }) ``` ## Delete Row ``` db.posts.remove({ title: 'Post Four' }) ``` ## Sub-Documents ``` db.posts.update({ title: 'Post One' }, { $set: { comments: [ { body: 'Comment One', user: 'Mary Williams', date: Date() }, { body: 'Comment Two', user: 'Harry White', date: Date() } ] } }) ``` ## Find By Element in Array (\$elemMatch) ``` db.posts.find({ comments: { $elemMatch: { user: 'Mary Williams' } } } ) ``` ## Add Index ``` db.posts.createIndex({ title: 'text' }) ``` ## Text Search ``` db.posts.find({ $text: { $search: "\"Post O\"" } }) ``` ## Greater & Less Than ``` db.posts.find({ views: { $gt: 2 } }) db.posts.find({ views: { $gte: 7 } }) db.posts.find({ views: { $lt: 7 } }) db.posts.find({ views: { $lte: 7 } }) ```
mongodb cmds
MongoDB mongod --dbpath /users/yulin/Documents/data/db mongo (once mongod is ran OPEN ANOTHER TERMINAL THconnect to MongoDB) ctrl-l to clear screen show dbs use {put db name here} show collections use {put collection name here} ex. - use quizzes use dbs ( or cd .. -- to go back dbs level) or just stay @ db level db.createCollection(“quizzes”) db.quizzes.find().pretty() db.quizzes.insert({“title”: 1}) (crud stuff) db.quizzes.find({“title”: 1}) db.quizzes.remove({}) (remove all) db.quizzes.remove({title: 1}) db.quizzes.update ({title: 1}, {title, 2}) (update by replaceing the entire object) db.quizzes.update ({name: “yulin”}, {$set:{title: “Quiz 2”}}) (update by appending object) db.quizzes.find({avg: {$gt: 85}}) (greater than) db.quizzes.find({avg: {$gte: 85}}) (greater than or equal to) db.quizzes.find({avg: {$lte: 85}}) (less than)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us