gpt4 book ai didi

sql - 为什么会出现外键约束错误

转载 作者:行者123 更新时间:2023-12-04 23:43:37 25 4
gpt4 key购买 nike

<分区>

我正在尝试使用 sql server 2012 在表中插入值,但出现此错误:

The INSERT statement conflicted with the FOREIGN KEY constraint "FK_Fabricante". 
The conflict occurred in database
"practica", table "dbo.Fabricantes", column 'Codigo'.

我只有两张 table 可用。

这是我用来创建表格的代码

create table Fabricantes(
Codigo int identity primary key,
Nombre nvarchar (100) not null)

create table Articulos(
Codigo int identity primary key,
Nombre nvarchar (100) not null,
Precio int,
Fabricante int,
constraint FK_Fabricante foreign key
(Codigo) references Fabricantes (Codigo))

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