作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想删除我数据库中的人:
从 person where id in (14) 中删除
但我有这个异常(exception)
Key value for constraint (pk_person_id) is still being referenced.
最佳答案
你可以试试这个,这将找到所有其他表,其中外键与 person 表的主键匹配,并且在 person 表中存在该列的值。
select e.tabname,g1.colname
from systables a,
sysconstraints b,
sysreferences c,
sysconstraints d,
systables e,
sysindexes f,
syscolumns g1
where a.tabname='person' and
a.tabid=b.tabid and b.constrtype='P' and
b.constrid=c.primary and
b.tabid=c.ptabid and
c.constrid=d.constrid and
d.tabid=e.tabid and
e.tabid=f.tabid and
f.idxname=d.idxname and
f.tabid=g1.tabid and abs(f.part1)=g1.colno
;
关于sql - 如何在informix中查找父项的引用记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25977762/
我是一名优秀的程序员,十分优秀!