Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Database Normalization
00:00
5 left

Database Normalization

MediumSQL · PostgreSQL

Problem

Describe the process of normalization in databases.

Use the supplied parameter records to represent the normalized form of the data. Explain the progression through the normal forms, the anomalies normalization prevents, and the trade-offs involved.

Output

  1. Return deployment_id, parameter_name, and parameter_value.
  2. Return one row per deployment parameter, ordered by deployment_id, then parameter_name, with NULL values last.

Schema

deployment_parameters
ColumnTypeDescription
parameter_idPKINTUnique identifier for the parameter record
deployment_idINTIdentifier of the deployment
parameter_nameVARCHAR(100)Name of one deployment parameter
parameter_valueVARCHAR(255)Atomic value assigned to the parameter
Tablesdeployment_parameters
Interviewer

Your question is Database Normalization. Start with the requirements and the one table in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.