What is normalization?

Question

can you help me with this question

Answer ( 1 )

    0
    2025-02-22T06:02:48+00:00

    Normalization is the process of organizing data to reduce redundancy and improve integrity. It consists of several normal forms (NF):

    • 1NF: Remove duplicate columns, ensure atomic values.
    • 2NF: 1NF + Remove partial dependencies.
    • 3NF: 2NF + Remove transitive dependencies.
    • BCNF: Stronger version of 3NF.

Leave an answer