当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


MongoDB $subtract用法及代码示例


MongoDB 提供了不同类型的中使用的算术表达式运算符聚合管道阶段一个$减去 操作符就是其中之一。这操作员用于减去两个数字并返回数字的差异或减去两个约会s 并返回差额毫秒,或减去日期和数字以毫秒为单位和返回 日期。

用法:

{ $subtract: [ <expression1>, <expression2> ] }

这里,给定的论点必须是有效的表达式,如数字或日期第二参数是减去来自第一的争论。如果要从日期中减去一个数字,则此运算符的第一个参数是日期。

例子:

在以下示例中,我们正在使用:



Database: GeeksforGeeks

Collection:Employee

Document: four documents that contain the details of the employees in the form of field-value pairs.

使用 $subract 运算符减去两个数字:

在此示例中,我们将使用 $subtract 运算符从 secondSalary 字段的值中减去 firstSalary 字段的值。

db.Employee.aggregate([{$match:{department:"Development"}},
... {$project:{result:
... {$subtract:["$secondSalary", "$firstSalary"]}}}])

使用 $subract 运算符减去两个日期:

在此示例中,我们将使用 $subtract 运算符从 projectEndDate 字段的值中减去两个日期,即 projectStartDate 字段的值。

db.Employee.aggregate([{$match:{department:"Testing"}},
... {$project:{diffResult:
... {$subtract:["$projectEndDate", "$projectStartDate"]}}}])

使用 $subract 运算符从日期中减去毫秒:

在此示例中,我们将使用 $subtract 运算符从 projectEndDate 字段的值中减去 5*24*60*60000 毫秒(即 5 天)。

db.Employee.aggregate([{$match:{department:"Testing"}},
... {$project:{newprojectEndDate:
... {$subtract:["$projectEndDate", 5*24*60*60000]}}}])

相关用法


注:本文由纯净天空筛选整理自ankita_saini大神的英文原创作品 MongoDB $subtract Operator。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。