次のテーブルを作成すると
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 の依存列を教えてくれる別のビューはありますか?
ありがとう