gpt4 book ai didi

mysql - 我如何将另一个表与另一个表的主表连接起来

转载 作者:行者123 更新时间:2023-11-29 02:09:18 26 4
gpt4 key购买 nike

我正在创建一个像 trello 这样的应用程序,因为我使用 MySQL 作为数据库,直到现在我已经使用 MySQL 和 express 创建了身份验证系统,node js 现在我想为卡片创建表来保存数据所以,我想知道如何将用户数据链接到用户名。

我创建了一个用户表,其中包含以下字段 id(primary key, auto_increment),name,email,password现在我想创建一个表卡,其中将显示用户卡,所以我如何链接用户表列对应于特定的使用,提前致谢 非常新的支持

最佳答案

也许这行代码可以帮到你一点忙。为了更好地把握主题。

-- This statement creates the cards table you may want to use (alternatively see Barmars Comment, this maybe a more professional solution)

CREATE TABLE Cards (
id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
customer_id INT,
firstname VARCHAR(30) NOT NULL,
lastname VARCHAR(30) NOT NULL,
email VARCHAR(50)
)

-- This statement then "connects" the tables. It makes the customer_id in the cards table a foreign key of the primary key of the customers table.
FOREIGN KEY (customer_id) REFERENCES customers(customer_id)

实现后,您可以在查询中使用 JOIN 来查询多个表。

如果您想了解更多信息,此视频可以帮助您理解主题: https://www.youtube.com/watch?v=USaXlErI-QE

关于mysql - 我如何将另一个表与另一个表的主表连接起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57922192/

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