gpt4 book ai didi

mysql - 如何在MySQL中使用关键字 'references'?

转载 作者:行者123 更新时间:2023-11-29 15:39:54 25 4
gpt4 key购买 nike

创建表时如何使用references关键字?

假设我想创建两个表 personhobby 并且我希望 hobby 表 id 引用 person 的 id?

person table
- id
- name

hobby
- id
- person_id
- hobby_name

我该怎么做?

最佳答案

创建与此类似的爱好表:

CREATE TABLE hobby (
id INT NOT NULL AUTO_INCREMENT,
person_id INT NOT NULL,
hobby_name VARCHAR(255),
PRIMARY KEY(id),
FOREIGN KEY(person_id) REFERENCES person(id))

关于mysql - 如何在MySQL中使用关键字 'references'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57787166/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com