Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
7.3.3. Unidirectional One-to-one with Join Tables
A unidirectional one-to-one association on a join table is possible, but extremely unusual.
create table Person ( personId bigint not null primary key ) create table PersonAddress ( personId bigint not null primary key, addressId bigint not null unique ) create table Address ( addressId bigint not null primary key )
create table Person ( personId bigint not null primary key )
create table PersonAddress ( personId bigint not null primary key, addressId bigint not null unique )
create table Address ( addressId bigint not null primary key )