$subtract - Amazon DocumentDB (original) (raw)
The $subtract operator in Amazon DocumentDB is used to subtract values. It can be used to subtract dates, numbers, or a combination of both. This operator is useful for calculating the difference between two dates or subtracting a value from a number.
Parameters
expression1: The first value to be subtracted.expression2: The second value to be subtracted from<expression1>.
Example (MongoDB Shell)
The following example demonstrates how to use the $subtract operator to calculate the difference between two dates.
Create sample document
db.dates.insert([
{
"_id": 1,
"startDate": ISODate("2023-01-01T00:00:00Z"),
"endDate": ISODate("2023-01-05T12:00:00Z")
}
]);Query example
db.dates.aggregate([
{
$project: {
_id: 1,
durationDays: {
$divide: [
{ <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>s</mi><mi>u</mi><mi>b</mi><mi>t</mi><mi>r</mi><mi>a</mi><mi>c</mi><mi>t</mi><mo>:</mo><mo stretchy="false">[</mo><mi mathvariant="normal">"</mi></mrow><annotation encoding="application/x-tex">subtract: ["</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.6944em;"></span><span class="mord mathnormal">s</span><span class="mord mathnormal">u</span><span class="mord mathnormal">b</span><span class="mord mathnormal">t</span><span class="mord mathnormal" style="margin-right:0.02778em;">r</span><span class="mord mathnormal">a</span><span class="mord mathnormal">c</span><span class="mord mathnormal">t</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">:</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mopen">[</span><span class="mord">"</span></span></span></span>endDate", "$startDate"] },
1000 * 60 * 60 * 24 // milliseconds in a day
]
}
}
}
]);Output
[ { _id: 1, durationDays: 4.5 } ]In this example, the $subtract operator is used to calculate the difference between the $endDate and $startDate in days.
Code examples
To view a code example for using the $subtract command, choose the tab for the language that you want to use:
Node.js
const { MongoClient } = require('mongodb');
async function example() {
const client = await MongoClient.connect('mongodb://<username>:<password>@<cluster-endpoint>:27017/?tls=true&tlsCAFile=global-bundle.pem&replicaSet=rs0&readPreference=secondaryPreferred&retryWrites=false');
try {
await client.connect();
const db = client.db('test');
const collection = db.collection('dates');
const pipeline = [
{
$project: {
_id: 1,
durationDays: {
$divide: [
{ <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>s</mi><mi>u</mi><mi>b</mi><mi>t</mi><mi>r</mi><mi>a</mi><mi>c</mi><mi>t</mi><mo>:</mo><mo stretchy="false">[</mo><mi mathvariant="normal">"</mi></mrow><annotation encoding="application/x-tex">subtract: ["</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.6944em;"></span><span class="mord mathnormal">s</span><span class="mord mathnormal">u</span><span class="mord mathnormal">b</span><span class="mord mathnormal">t</span><span class="mord mathnormal" style="margin-right:0.02778em;">r</span><span class="mord mathnormal">a</span><span class="mord mathnormal">c</span><span class="mord mathnormal">t</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">:</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mopen">[</span><span class="mord">"</span></span></span></span>endDate", "$startDate"] },
1000 * 60 * 60 * 24 // Convert milliseconds to days
]
}
}
}
];
const results = await collection.aggregate(pipeline).toArray();
console.dir(results, { depth: null });
} finally {
await client.close();
}
}
example().catch(console.error);
Python
from datetime import datetime, timedelta
from pymongo import MongoClient
def example():
client = MongoClient('mongodb://<username>:<password>@<cluster-endpoint>:27017/?tls=true&tlsCAFile=global-bundle.pem&replicaSet=rs0&readPreference=secondaryPreferred&retryWrites=false')
try:
db = client.test
collection = db.dates
pipeline = [
{
"$project": {
"_id": 1,
"durationDays": {
"$divide": [
{ "$subtract": ["$endDate", "$startDate"] },
1000 * 60 * 60 * 24 # Convert milliseconds to days
]
}
}
}
]
results = collection.aggregate(pipeline)
for doc in results:
print(doc)
except Exception as e:
print(f"An error occurred: {e}")
finally:
client.close()
example()