A data analyst needs to combine data from three tables. If the tables are joined sequentially, what is the result called?
Trap 1: Data normalization
Normalization splits data into separate tables.
Trap 2: Data aggregation
Aggregation performs calculations like SUM or AVG.
Trap 3: Data pivoting
Pivoting rotates rows to columns.
- A
Data denormalization
Joining tables back together is the essence of denormalization for reporting.
- B
Data normalization
Why wrong: Normalization splits data into separate tables.
- C
Data aggregation
Why wrong: Aggregation performs calculations like SUM or AVG.
- D
Data pivoting
Why wrong: Pivoting rotates rows to columns.