When to Denormalize a Database Design

前端 未结 9 1933
半阙折子戏
半阙折子戏 2020-11-29 15:52

I know that normalization has been extensively discussed on Stack Overflow. I\'ve read many of the previous discussions. I\'ve got some additional questions though.

I

9条回答
  •  眼角桃花
    2020-11-29 16:40

    1) Does not require denormalization. You just need to determine what level of detail of each change you need and persist that with an appropriate key.

    2) Has nothing to do with denormalization. Storing summary data does not make the database denormalized. Storing results derived from non key attributes in the same table would be an example of denormalization but that doesn't seem to be what you are talking about here.

提交回复
热议问题