Moderate SQL Question 90 of 226

Explain 1NF, 2NF, and 3NF with a student-marks example.

Java Specialist · Speak this in 60–90 seconds · Faridabad & Delhi NCR

PICTURE THIS: DATABASE INDEX

Without indexScan every row
With indexJump to keys
CostWrites slower

Simple meaning

1NF: no repeating mark columns like mark1, mark2

1

WHY — SQL instead of guessing?

Why interviewers care about SQL:

SQL questions separate people

who only read docs from people who shipped.

Keep it short, concrete,

and tied to Backend work.

Stay structured

Name the idea, why it exists, then one short example.

Close cleanly

End with when you use it and one common pitfall.

2

STEPS — What happens step by step?

Before you speak the answer, walk the interviewer through these steps:

  1. 1
    1NF: no repeating mark

    columns like mark1, mark2

  2. 2
    Why it exists

    each score is a row.

  3. 3
    2NF: if the key

    is (student_id, subject_id), student name must not hang off that composite key

  4. 4
    Give an example

    move name to students.

  5. 5
    3NF: city should not

    be stored because it depends on pincode, not on the student key

  6. 6
    keep a pincode table

    if that matters.

3

EXAMPLE — See it in action

Here's a short line you can speak, broken into clear beats:

Say this line
“2NF: if the key is (student_id, subject_id), student name must not hang off that”
Break into beats
2NFifthekeyisstudent
Speaking order
2987408337471632900

Note: Adapt this scaffold to your own project — keep it under 60–90 seconds.

Key takeaway

1NF: no repeating mark columns like mark1, mark2 each score is a row.

Chat with us