Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
8.2. Unidirectional associations
8.2.1. Many-to-one Link kopierenLink in die Zwischenablage kopiert!
Link kopierenLink in die Zwischenablage kopiert!
A unidirectional many-to-one association is the most common kind of unidirectional association.
create table Person ( personId bigint not null primary key, addressId bigint not null ) create table Address ( addressId bigint not null primary key )
create table Person ( personId bigint not null primary key, addressId bigint not null )
create table Address ( addressId bigint not null primary key )