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


MongoDB $add用法及代码示例


MongoDB 提供了不同类型的中使用的算术表达式运算符聚合管道阶段$add操作符就是其中之一。这操作员用于添加数字或日期。如果 $add操作员 添加日期,然后它会对待其他参数作为毫秒并添加到指定的日期。

用法:

{ $add: [ <Expression1>, <Expression2>, ... <ExpressionN>] }

在这里,表达式必须是一个有效的表达式,如数字或日期。

例子:

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



Database: GeeksforGeeks

Collection:Employee

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

使用 $add 运算符添加数字:

在这个例子中,我们将找到开发部门每个员工的总工资。

db.Employee.aggregate([{$match:{department:"Development"}},
... {$project:{name:1, tSalary:{$add:
                ["$firstSalary", "$secondSalary"]}}}])

使用 $add 运算符在嵌入文档中添加数字:

在这个例子中,我们将找到人力资源部门员工的三个月工资。

db.Employee.aggregate([{$match:{department:"HR"}},
... {$project:{name:1, tSalary:{$add:["$salary.firstMonth", 
                                          "$salary.secondMonth",
                                          "$salary.thirdMonth"]}}}])

使用 $add 运算符添加日期:

在此示例中,我们将通过在测试部门的 projectEndDate 字段中添加 5 天(即 5*24*60*60000)来延长项目的最后日期。

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

相关用法


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