{ $ceil umber }
Ejemplos:
empleados
db.employee.aggregate([{$match: {department: "Development"}}, {$project: {perfoPoint: 1, ceilingPoint: {$ceil: "$perfoPoint"}}}])
db.employee.aggregate([{$match: {department: "HR"}}, ... {$project: {"perfoPoint.firstMonthPoint": 1, ceilingPoint: {$ceil: "$perfoPoint.firstMonthPoint"}}}])
Publicación traducida automáticamente
Artículo escrito por ankita_saini y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA