Este contenido no está disponible en el idioma seleccionado.
7.2. Unidirectional associations
7.2.1. Many-to-one Copiar enlaceEnlace copiado en el portapapeles!
Copiar enlaceEnlace copiado en el portapapeles!
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 )