MongoDB: Querying reference
Example inventory
collection
Let’s suppose you have a inventory
collection like this:
Let’s assume you’ll be using Mongo Compass to work with the collection. Most of the queries and writes should be similar even if you’re using MongoDB Shell or a library in another language.
Query flat documents
Specify EQUALS condition
SQL equivalent:
Specify VALUE IN condition
SQL equivalent:
Specify AND condition
SQL equivalent:
Specify OR condition
SQL equivalent:
Specify combination of AND and OR
SQL equivalent:
Query nested documents
Field must exactly match a document
This will match only the documents where size
is exactly as specified in the filter – all the fields must match and be in the same order.
Nested field must exactly match value
Use query operator on nested field
Specify AND condition on multiple nested fields
Query arrays
Field must be exactly equal to an array
This will return only documents where tags
has exactly two elements and in the exact order specified.
Field must contain all array elements
tags
can contain other elements and the order can be different to what’s specified.
Field must contain a specific element
Happy as long as tags
contains red
. Doesn’t matter if it contains other elements.
Field must contain an array element that matches a condition
This will match any document where dim_cm
contains is an array that contains an element greater than 25
.
Field must contain an array element that matches one of the conditions
This will match any document where dim_cm
has at least one element that’s either greater than 15
or less than 20
.
Field must contain an array element that matches all of the conditions
This will match any document where dim_cm
contains an element that meets both the conditions: greater than 22
and less than 30
.
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment