如何查找不满足约束条件的记录?

时间:2019-07-03 13:35:43

标签: postgresql constraints

我要添加约束:

alter table x add constraint "y"
EXCLUDE USING gist (id WITH =, sys_period WITH &&, app_period WITH &&);

但是它失败了,因为某些记录不满足约束条件。

如何查找那些记录?

我已经尝试过了,但这不是我想要的:

select o1.id, o1.app_period, o2.app_period, * 
from x o1 inner join x o2 on o1.id = o2.id  
  and o1.sys_period && o2.sys_period 
  and o1.app_period && o2.app_period;

0 个答案:

没有答案