Skip to content

Instantly share code, notes, and snippets.

@bchewy
Created April 15, 2021 12:34
Show Gist options
  • Save bchewy/e03ec4bbde42637be2f761eea3d996ff to your computer and use it in GitHub Desktop.
Save bchewy/e03ec4bbde42637be2f761eea3d996ff to your computer and use it in GitHub Desktop.
useful mongodb commands
# show databases
show dbs
# use database (sample_training)
use sample_training
# show collections in database
show collections
# query database with .find(under the "zip" collection in the database)
db.zips.find({"state": "NY"})
# iterating down the terminal pages if collection/data is too large
it
# returns count of collection
db.zips.find({"state": "NY"}).count()
# query with two filters
db.zips.find({"state": "NY", "city": "ALBANY"})
# shows it in a structure
db.zips.find({"state": "NY", "city": "ALBANY"}).pretty()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment