如果我创建下表
create table test(
id1 int,
id2 int,
id3 int constraint CK1 check (id3 > 2),
constraint CK2 check (id1 > id2),
)
我可以通过查询找到CK1的依赖关系select * from sys.check_constraints
。parent_column_id 将返回正确答案 3。但是,CK2 是另一回事,父列 id 返回 0。还有其他视图可以告诉我 CK2 的依赖列吗?
谢谢