Hi
I was wondering if there was a possibity to do something like this :create table a (a int primary key);create table b (b int primary key, a int[] references a(a));to avoid having to create another table to join the two tables.
-- Mathieu Arnold