Created
April 15, 2021 12:34
-
-
Save bchewy/e03ec4bbde42637be2f761eea3d996ff to your computer and use it in GitHub Desktop.
useful mongodb commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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