bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/Python/Databases in Python
Python•Databases in Python

Python MongoDB Query

Concept visual

Python MongoDB Query

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

Filter the Result

When finding documents in a collection, you can filter the result by using a query object.

The first argument of the find()

method is a query object, and is used to limit the search.

Example

Find document(s) with the address "Park Lane 38":

Formula

import pymongo myclient = pymongo.MongoClient("mongodb://localhost:27017/")
mydb = myclient["mydatabase"]
mycol = mydb["customers"]
myquery = { "address": "Park Lane 38" }

Formula

mydoc = mycol.find(myquery)
for x in mydoc:
print(x)

Advanced Query

To make advanced queries you can use modifiers as values in the query object. E.g. to find the documents where the "address" field starts with the letter "S" or higher (alphabetically), use the greater than modifier:

{"$gt": "S"}

Example

Find documents where the address starts with the letter "S" or higher:

Formula

import pymongo myclient = pymongo.MongoClient("mongodb://localhost:27017/")
mydb = myclient["mydatabase"]
mycol = mydb["customers"]
myquery = { "address": { "$gt": "S" } }

Formula

mydoc = mycol.find(myquery)
for x in mydoc:
print(x)

Filter With Regular Expressions

You can also use regular expressions as a modifier. Regular expressions can only be used to query strings. To find only the documents where the "address" field starts with the letter "S", use the regular expression

{"$regex": "^S"}

Example

Find documents where the address starts with the letter "S":

Formula

import pymongo myclient = pymongo.MongoClient("mongodb://localhost:27017/")
mydb = myclient["mydatabase"]
mycol = mydb["customers"]
myquery = { "address": { "$regex": "^S" } }

Formula

mydoc = mycol.find(myquery)
for x in mydoc:
print(x)

Previous

Python MySQL Where

Next

Python MySQL Order By