7.2. Unidirectional Associations
7.2.1. Unidirectional Many-to-one Copy linkLink copied to clipboard!
Copy linkLink copied to clipboard!
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 )