解决方法
这取决于什么类型的应用程序正在使用数据库.
对于OLTP应用程序(主要是数据输入,具有许多INSERT,UPDATE和DELETES以及SELECT),标准化通常是一件好事.
对于OLAP和报告应用程序,规范化没有帮助. SELECT查询的运行速度要比非规范化模式快得多,这可以通过视图来实现.
您也可以在这些非常受欢迎的类似问题中找到一些有用的信息:
Should I normalize my DB or not?
In terms of databases,is “Normalize for correctness,denormalize for performance” a right mantra?
What is the resource impact from normalizing a database?