Normalization in MYSQL

前端 未结 5 2173
囚心锁ツ
囚心锁ツ 2020-11-22 12:58

What is normalization in MySQL and in which case and how we need to use it?

5条回答
  •  长情又很酷
    2020-11-22 13:36

    It's a technique for ensuring that your data remains consistent, by eliminating duplication. So a database in which the same information is stored in more than one table is not normalized.

    See the Wikipedia article on Database normalization.

    (It's a general technique for relational databases, not specific to MySQL.)

提交回复
热议问题