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

6.8K views on YouTube

#MongoDB #course #tutorial

00:00:00 MongoDB Shell
00:03:10 MongoDB Compass

db.students.find({name: “Spongebob”})
db.students.find({gpa: 4.0})
db.students.find({fullTime: false})
db.students.find({}, {name: true})
db.students.find({}, {_id: false, name: true})
db.students.find({}, {_id: false, name: true, gpa: true})
db.students.find({name:”Spongebob”}, {_id: false, name: true, gpa: true})