07 Document Databases
Slides: https://webeep.polimi.it/mod/resource/view.php?id=42228 Exercises: https://webeep.polimi.it/mod/resource/view.php?id=44139
Pages
01 Introduction
Document databases deviate from the entity-based denormalized data model of relational dbs and prefer an approach based on denormalized and aggregated data typical of business document. A document is…
02 MongoDB
MongoDB is a document-oriented database that stores data within: Documents : consist of key-value pairs which are the basic unit of data in MongoDB. Collections contain sets of documents. Databases…
03 MongoDB Queries
Create Create a database: use database_name Create a collection: db.createCollection(name, options) MongoDB provides two methods to create new documents. db.collection.insertOne(document) inserts one…
Exam questions
2021 06 22 Q2 (6 points) A dedicated online review and social networking system tracks the activities of customers of hotels, including their stays, their searches and their online interactions,…