在postgres中,如何使用RI数组元素?

时间:2015-09-24 06:54:06

标签: arrays postgresql constraints

常规RI

create table t2(
  c1     serial    primary key,
  c2     int       references t1(c1) on delete cascade
);
create index t2_c2 on t1(c2);

如果c2是整数Array怎么办?

  1. 是否可以使用数组的reference元素

  2. 确保元素编入索引的最佳方法是

  3. create table t2(
       c1     serial    primary key,
       c2     int[]     -- ??
    }
    create index t2_c2 on t2( ?? );
    

    (确定已经被问过并回答了一千次,但出于某种原因,我的谷歌启用了这个领域)

0 个答案:

没有答案