我有两张桌子:
table vehicule_loan( vehicule TEXT NOT NulL UNIQUE,);table vehicule_uID ( ID UUID NOT NulL DEFAulT uuID_generate_v4(),vehicule TEXT NOT NulL REFERENCES vehicule_loan(vehicule) ON DELETE NO ACTION);
当我从表vehicule_loan中删除一个vehicule时,我希望保留表vehicule_uID中的引用行.
但是当我尝试删除一个时,我收到此错误:
ERROR: update or delete on table "vehicule_loan" violates foreign key constraint "vehicule_uID_vehicule_fkey" on table "vehicule_uID"
我想我理解错误:
我从表vehicule_loan中删除了一个车辆后,vehicule_uID中的车辆将指向什么.
但是有没有办法将行保存在vehicule_uID中?
解决方法 您应该在外键属性中允许NulL值,并将外键约束定义为ON DELETE SET NulL.我引用第5.3. Constraints from the PostgreSQL manual章:
There are two other options: SET NulL and SET DEFAulT. These cause the
referencing columns to be set to nulls or default values,
respectively,when the referenced row is deleted.
看起来像这样:
table vehicule_uID ( ID uuID NOT NulL DEFAulT uuID_generate_v4(),vehicule text REFERENCES vehicule_loan(vehicule) ON DELETE SET NulL);
使用此设置,当您在vehicule_loan中删除行时,vehicule_uID中的所有引用行都保留在数据库中.
总结以上是内存溢出为你收集整理的postgresql和Delete语句违反了外键约束全部内容,希望文章能够帮你解决postgresql和Delete语句违反了外键约束所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)