From d38a98c3702988f9a058728a8378099c29c3f8c4 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Sat, 3 Sep 2022 15:10:39 +0200 Subject: [PATCH] mongodb: operators and projections --- docs/database/mongo-db.md | 47 +++++++++++++++++++++++++++------------ 1 file changed, 33 insertions(+), 14 deletions(-) diff --git a/docs/database/mongo-db.md b/docs/database/mongo-db.md index 8f0c4f2..24e1cbc 100644 --- a/docs/database/mongo-db.md +++ b/docs/database/mongo-db.md @@ -36,13 +36,13 @@ db.createCollection(name, {options}) # explicit collection creation db..insertOne({document}) # implicit collection creation ``` -## Operators +## Operators (MQL Syntax) ```json /* --- Update operators --- */ -{ "$inc": { "": , ... } } // Increment value +{ "$inc": { "": "", ... } } // Increment value { "$set": { "": "", ... } } // Set value -{ "$push": { "": "", ... } } // add a value to an array field +{ "$push": { "": "", ... } } // add a value to an array field or turn field into array /* --- Query Operators --- */ { "": { "$in": [ "", "", ...] } } // Membership @@ -58,20 +58,30 @@ db..insertOne({document}) # implicit collection creation { "": { "$ne": "" }} // != /* --- Logic Operators (DEFAULT $and) --- */ -{ "$and": [ { }, ...] } -{ "$or": [ { }, ...] } -{ "$nor": [ { }, ...] } -{ "$not": { } } +{ "$and": [ { "" }, ...] } +{ "$or": [ { "" }, ...] } +{ "$nor": [ { "" }, ...] } +{ "$not": { "" } } + +/* --- Array Operators --- */ +{ "": { "$all": ["value>", "", ...] } } // field contains all values +{ "": { "$size": "" } } +{ "": { "$elemMatch": { "": "" } } } // elements in array must match an expression + +/* --- REGEX Operator --- */ +{ "": { "$regex": "/pattern/", "$options": "" } } +{ "": { "$regex": "pattern", "$options": "" } } +{ "": { "$regex": "/pattern/" } } +{ "": "/pattern/" } ``` ### Expressive Query Operator -`$` is used to access the value of the field dynamically +> **Note**: `$` is used to access the value of the field dynamically ```json -{ "$expr": { } } // aggregation expression, variables, conditional expressions - -{ "$expr": { "$comparison_operator": [ "$", "$" ] } } // compare field values +{ "$expr": { "" } } // aggregation expression, variables, conditional expressions +{ "$expr": { "$": [ "$", "$" ] } } // compare field values (operators use aggregation syntax) ``` ## CRUD Operations @@ -121,13 +131,20 @@ db..insertMany([ { document }, { document } ] , { "ordered": false } ```sh db..findOne() # find only one document db..find(filter) # show selected documents -db..find(filter, {"": 1}) # show selected values form documents (1 or true => show, 0 or false => don't show, cant mix 0 and 1) -db..find(filter, {_id: 0, "": 1}) # only _id can be set to 0 with other keys at 1 db..find().pretty() # show documents formatted db..find().limit(n) # show n documents db..find().limit(n).skip(k) # show n documents skipping k docs db..find().count() # number of found docs -db..find().sort({key1: 1, ... , key_n: -1}) # show documents sorted by specified keys in ascending (1) or descending (-1) order +db..find().sort({ "": 1, ... , "": -1 }) # show documents sorted by specified keys in ascending (1) or descending (-1) order + +# projection +db..find(filter, { "": 1 }) # show selected values form documents (1 or true => show, 0 or false => don't show, cant mix 0 and 1) +db..find(filter, { _id: 0, "": 1 }) # only _id can be set to 0 with other keys at 1 +db..find(filter, { "": { "$elemMatch": { "": "" } } }) # project only elements matching the expression + +# sub documents & arrays +db..find({ "..": "" }) +db..find({ "..": "" }) # GeoJSON - https://docs.mongodb.com/manual/reference/operator/query/near/index.html db..find( @@ -149,6 +166,8 @@ db..find().hint( { $natural : 1 } ) # force the query to perform a db..find().hint( { $natural : -1 } ) # force the query to perform a reverse collection scan ``` +> **Note**: `{ : }` in case of a field array will match if the array _contains_ the value + ### Update [Update Operators](https://docs.mongodb.com/manual/reference/operator/update/ "Update Operators Documentation")