gpt4 book ai didi

mysql - 使用 phpmyadmin 在 Mysql 中创建表

转载 作者:行者123 更新时间:2023-11-29 12:11:45 24 4
gpt4 key购买 nike

尝试为正在构建的数据库创建产品表时,我不断收到错误。

这是我尝试过的代码:

CREATE TABLE Products (
ProductId int NOT NULL auto_increment primary key,
Name varchar(255) NOT NULL,
Price decimal(19, 4),
on_hand integer,
supp_id int,
FOREIGN KEY (supp_id) REFERENCES Suppliers(supp_id)
);

我收到此错误代码:

#1005 - Can't create table 'computer_wholesale.products' (errno: 150

任何帮助将不胜感激。

最佳答案

我相信您的 Suppliers 表缺少索引,这是使用 FOREIGN KEY 所必需的。

关于mysql - 使用 phpmyadmin 在 Mysql 中创建表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30550166/

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