The DELETE statement conflicted with the REFERENCE constraint

Page是主表,主键是pageid;UserGroupPage表中的PageID字段是Page表里的数据。 

 

 https://www.codeproject.com/Questions/677277/I-am-getting-error-while-delete-entry

You are trying to Delete the record from a Table which has a reference in another Table.

Here REFERENCE constraint is "FK_User_History_Tbl_Customer".

Tables are User_History and Tbl_Customer.
UserId column is referenced by Tbl_Customer Table.

When you try to delete a row from User_History Table, it comes to know that the same row has some related row in Tbl_Customer Table.

So, you need to delete from Tbl_Customer Table first and then delete from Table User_History.

If you want to delete a row, then you have to execute the following two queries in sequence.

DELETE FROM Tbl_Customer
WHERE UserId = [[[UserIdToDelete]]];

DELETE FROM User_History
WHERE UserId = [[[UserIdToDelete]]]

 

 

 

尝试筛选了一下数据,居然有记录。本地的开发环境是没有记录的

SELECT *
FROM   dbo.tba_ugp_UserGroupPage AS c
WHERE  EXISTS (   SELECT a.PageID
                  FROM   dbo.tbx_pag_Page AS a
                         INNER JOIN dbo.tbx_mod_Module AS b ON a.ModuleID = b.ModuleID
                  WHERE  b.PhysicalModuleID IN ( 16, 19 )
                         AND a.PageID = c.PageID );

 

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(1191)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2018-03-14 pass an instance of class to TestCase as parameter
2018-03-14 How to Integrate .NET Projects with Jenkins
2016-03-14 Knowing When to Use Override and New Keywords (C# Programming Guide)
2016-03-14 Versioning with the Override and New Keywords (C# Programming Guide)
2016-03-14 Polymorphism (C# Programming Guide)
2015-03-14 2-Medium下的MultipleCommandAssembly
2015-03-14 如何获取supersocket的源代码
点击右上角即可分享
微信分享提示