Basics of Foreign Keys in MySQL?(MySQL 外键的基础知识?)
问题描述
关于如何使用 MySQL 的外键结构有什么好的解释吗?
Is there any good explanation of how to use MySQL's foreign key construct?
我不太了解 MySQL 文档本身.到目前为止,我一直在处理诸如带有连接和编程代码的外键之类的事情.
I don't quite get it from the MySQL docs themselves. Up until now I've been handling things like foreign keys with joins and programming code.
问题的第二部分,使用 MySQL 的内置外键是否有任何改进?
And the second part of the question, are there any improvements to be made by using MySQL's inbuilt foreign keys?
推荐答案
FOREIGN KEYS 只需确保您的数据一致即可.
FOREIGN KEYS just ensure your data are consistent.
他们并没有提高效率意义上的查询,他们只是让一些错误的查询失败.
They do not improve queries in sense of efficiency, they just make some wrong queries fail.
如果你有这样的关系:
CREATE TABLE department (id INT NOT NULL)
CREATE TABLE employee (id INT NOT NULL, dept_id INT NOT NULL, FOREIGN KEY (dept_id) REFERENCES department(id))
,那么你不能删除一个部门,如果它有一些employee.
, then you cannot delete a department if it has some employee's.
如果您将 ON DELETE CASCADE 提供给 FOREIGN KEY 定义,则引用行将与引用行一起自动删除.
If you supply ON DELETE CASCADE to the FOREIGN KEY definition, the referencing rows will be deleted automatically along with the referenced ones.
作为约束,FOREIGN KEY 实际上会稍微减慢查询速度.
As a constraint, FOREIGN KEY actually slows down the queries a little.
从引用表中删除或插入引用表时需要执行额外检查.
Extra checking needs to be performed when deleting from a referenced table or inserting into a referencing one.
这篇关于MySQL 外键的基础知识?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL 外键的基础知识?
基础教程推荐
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
