CREATE TABLE base ( id int not null primary key, .... ) CREATE TABLE part ( base_id REFERENCES base (id) UNIQUE, ... )