Board Link: https://excalidraw.com/#json=hjt-sr_tJpdAYeH4ZOnA_,Z1hD_3Msxpr5LhOimSE6Gw
shwo dbs
use pt-web-7
db.createCollection('lectures')
show collections
db.<collection_name>.insertOne({ title: 'Nodejs Intro', sprint: 1, date: "2022-12-08" })
db.lectures.find()
db.lectures.find({ title: "MongoDB" })
db.lectures.findOne({ _id: ObjectId("6399f881d17280baeb06c26f") })
db.lectures.updateOne({ _id: ObjectId("6399f9efd17280baeb06c270") }, {$set: { title: 'Updated 2'}})