MongoDB Update
From mi-linux
Jump to navigationJump to search
Main Page >> MongoDB >>MongoDB Workbook >> Updating Collections
Updating a Collection
To add an employee to department 40:
db.deptCollection.update({'deptno':40}, {$set: {'employees': [ { empno: 8888, ename: 'MARY', job: 'LECTURER', mgr: 7566, hiredate: new Date(), sal: 4000 } ]} } )