Oracle 고유 제약 조건 및 고유 인덱스 고유 제약(Oracle) 없이 고유 인덱스를 보유하는 목적이 무엇인지 누가 명확히 할 수 있습니까?예를들면, create table test22(id int, id1 int, tmp varchar(20)); create unique index idx_test22 on test22(id); insert into test22(id, id1, tmp) values (1, 2, 'aaa'); // ok insert into test22(id, id1, tmp) values (1, 2, 'aaa'); // fails, ORA-00001: unique // constraint (TEST.IDX_TEST22) violated 아직까지는 제약이 있는 것처럼 보인다.그렇지만 ..