Skip to content

PRO TIP Block youtube.com at the DNS level — Pi-hole, NextDNS or your hosts file — but allow youtube-nocookie.com and i.ytimg.com. These tutorials keep playing; the rabbit hole does not.

Learning without distractions

MongoDB how to update documents

7.5K views on YouTube

#MongoDB #course #tutorial

00:00:00 updateOne()
00:04:14 updateMany()
00:07:30 MongoDB Compass

db.students.updateOne({name:”Spongebob”}, {$set:{fullTime:true}})
db.students.updateOne({_id: ObjectId(“642c0e70985f18e1bcf24d35”)}, {$set:{fullTime:false}})
db.students.updateOne({_id: ObjectId(“642c0e70985f18e1bcf24d35″)}, {$unset:{fullTime:””}})
db.students.updateMany({}, {$set:{fullTime:false}})
db.students.updateOne({name:”Gary”}, {$unset:{fullTime:””}})
db.students.updateOne({name:”Sandy”}, {$unset:{fullTime:””}})
db.students.updateMany({fullTime:{$exists:false}}, {$set:{fullTime:true}})