Anda di halaman 1dari 2

Exercise---2

db.users.insert(
[
{"username" : "smith", "age" : 48, "user_id" : 0 },
{"username" : "smith", "age" : 30, "user_id" : 1 },
{"username" : "john", "age" : 36, "user_id" : 2 },
{"username" : "john", "age" : 18, "user_id" : 3 },
{"username" : "joe", "age" : 36, "user_id" : 4 },
{"username" : "john", "age" : 7, "user_id" : 5 },
{"username" : "simon", "age" : 3, "user_id" : 6 },
{"username" : "joe", "age" : 27, "user_id" : 7 },
{"username" : "jacob", "age" : 17, "user_id" : 8 },
{"username" : "sally", "age" : 52, "user_id" : 9 },
{"username" : "simon", "age" : 59, "user_id" : 10 }
]
)
db.users.find().pretty()
db.userdetail.ensureIndex({"username" : 1, "age" : -1})
Exercise----3
db.product.insert({
"sku": "abcd",
"type": "Audio Album",
"title": "Remembering Manna De",
"description": "By Music lovers",
"physical_description" : {
"weight": 6,
"width": 10,
"height": 10,
"depth": 1
},
"pricing": {
"list": 100,
"retail": 110,
"savings": 10,
"pct_savings":10
},
"details": {
"title": "A tribute",
"artist": "Manna Dey",
"genre": [ "bengali modern", "bengali film" ],
"tracks": [
"birth",
"childhood",
"growing up",
"end"
],
},
})

db.product.insert({
"sku": "pqrs",
"type": "Movie",
"title": "Sholay",
"description": "By Movie lovers",
"physical_description" : {
"director": "Ramesh Sippy",
"writer": "Salim Javed",
"music director": "RD Burman",
"actors": ["Amitabh","Dharmendra","Sanjeev","Hema","Jaya","Amjad"],
},
"pricing": {
"list": 100,
"retail": 110,
"savings": 10,
"pct_savings":10
},
"details": {
"title": "Sholay Revisted",
"artist": "ADSHJA",
"genre": [ "poppular", "Sci-fi",],
"tracks": [
"romantic",
"revenge",
],
},
})
db.product.find().pretty()
Assignment:
query1 = db.product.find({"pricing.pct_savings": {'$gt': 10 }})
qq = db.product.find({"type":"Movie","details.genre":"poppular"})
qq = qq.sort([("details.issue_date", -1)])
pp = db.product.find({"type":"Movie","physical_description.actors": "Amitabh"})
pp = pp.sort([('details.issue_date', -1)])

Anda mungkin juga menyukai