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 delete documents

5.7K views on YouTube

#MongoDB #course #tutorial

00:00:00 export collection
00:00:43 MongoDB shell delete
00:00:53 .deleteOne()
00:01:32 .deleteMany()
00:01:59 $exists
00:02:56 import collection

db.students.deleteOne({name:”Larry”})
db.students.deleteMany({fullTime:false})
db.students.deleteMany({registerDate:{$exists:false}})