Awd Mongodb Command or Query
Awd Mongodb Command or Query
CENTRAL_UNI
db.central_uni.insertMany([
{ name: "J.R. Roy", location: "City C", contact_no:
"1234567890", c_id: "101" },
{ name: "M.S. Sharma", location: "City D", contact_no:
"9876543210", c_id: "102" }
])
5. Delete the private university having name "C.J. Shah"
db.private.deleteOne({ name: "C.J. Shah" })
7. Update the "contact no" of central uni university where c_id is "101"
db.central_uni.updateOne(
{ c_id: "101" },
{ $set: { contact_no: "1112223334" } }
)
Q.2
1. Create Database "movie"
use movie
Q.3
db.createCollection("student")
db.student.insertMany([
])