数据库设计中真的需要外键吗?

Are foreign keys really necessary in a database design?(数据库设计中真的需要外键吗?)
本文介绍了数据库设计中真的需要外键吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

据我所知,外键 (FK) 用于帮助程序员以正确的方式操作数据.假设一个程序员实际上已经以正确的方式这样做了,那么我们真的需要外键的概念吗?

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 already, then do we really need the concept of foreign keys?

外键还有其他用途吗?我在这里遗漏了什么吗?

Are there any other uses for foreign keys? Am I missing something here?

推荐答案

外键有助于在数据级别强制执行参照完整性.它们还提高了性能,因为它们通常默认被编入索引.

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

这篇关于数据库设计中真的需要外键吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)
SQL to Generate Periodic Snapshots from Transactions Table(用于从事务表生成定期快照的SQL)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
FastAPI + Tortoise ORM + FastAPI Users (Python) - Relationship - Many To Many(FastAPI+Tortoise ORM+FastAPI用户(Python)-关系-多对多)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)