Are foreign keys really necessary in a database design?

前端 未结 24 2337
执笔经年
执笔经年 2020-11-28 18:08

As far as I know, foreign keys (FK) are used to aid the programmer to manipulate data in the correct way. Suppose a programmer is actually doing this in the right manner alr

24条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-28 18:27

    Foreign keys help enforce referential integrity at the data level. They also improve performance because they're normally indexed by default.

提交回复
热议问题