One or more values in the INSERT statement, UPDATE statement, or foreign key update caused by a DELE

2022/7/26 2:23:06

本文主要是介绍One or more values in the INSERT statement, UPDATE statement, or foreign key update caused by a DELE,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

进行数据插入时,出现SQLCODE=-803, SQLSTATE=23505错误,(db2数据库)

经过上网搜索  说的是违反了惟一性约束!

之后我查了一下我的表结构发现我的id作为了主键,然后id也没有自增

 

 知道原因后只需要把id设为自增的就行了,具体操作如下:

1 )当想将表中一列修改为自动增长时,可用下面命令:

Alter table <table name> alter column <column name> set generated always as identity (start with 1,increment by 1)     2)当修改表中一列自动增长的开始值时,可用下面的命令: ALTER TABLE <talbe_name> ALTER COLUMN <column name> RESTART WITH 18;

这篇关于One or more values in the INSERT statement, UPDATE statement, or foreign key update caused by a DELE的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程