Is it bad to use redundant relationships?

前端 未结 7 1023
小鲜肉
小鲜肉 2021-01-12 08:20

Suppose I have the following tables in my database:

Now all my queries depend on Company table. Is it a bad practice to give every other table a (redundant

相关标签:
7条回答
  • 2021-01-12 09:04

    That depends on your functional requirements for 'Performance'. Is your application going to handle heavy demand? Simplifying JOINS boasts performance. Besides hardware is cheap and turn-around time is important.

    The more deeper you go in database normal forms - you save space but heavy on computation

    0 讨论(0)
提交回复
热议问题