Adnan Ahmed
Adnan Ahmed

Reputation: 19

Normalisation in NoSQL in Mongo DB

The first table is for products, how would I normalize this data.

IMAT3104 Database Management and Programming Assignment 2017-18 De Montfort University 2018 Page 6 of 11

The second table is for reviews and how would I normalize this table as well.

What is the process of normalization and how can I organize the above 2 tables?

Upvotes: 0

Views: 679

Answers (1)

Normalization--a strictly logical process--is the same whether the target platform is a SQL dbms, a large scale C++ program, or a nosql database.

Following the normalization procedures in any good, college-level textbook, normalize every relation to 5NF. Then translate the results to your target platform. (You'll often have to translate declarative code to procedural code.)

Upvotes: 1

Related Questions