Is database normalization still necessary?

后端 未结 4 767
伪装坚强ぢ
伪装坚强ぢ 2020-12-28 19:08

Is database normalization still \"the thing?\"

When I studied during a databases course we were taught all levels of normalization and were said that we must always

4条回答
  •  旧巷少年郎
    2020-12-28 19:46

    A rule of thumb "JOIN's are Expensive on Processing Power". I use is when creating a database for a project large or small. Tables that hold data such as usernames, addresses etc should always be normalised as they are accessed less recently how you where taught using the kind of examples taught. Now in recent years web2.0 data, apps, mobile services etc. have taken in fact a different type of data which with the abundance of memory code even lower, it can save processing power to keep them all on the same "table" not normalising it.

提交回复
热议问题