此内容没有您所选择的语言版本。
7.5. Bidirectional Associations with Join Tables
The following is an example of a bidirectional one-to-many association on a join table. The
inverse="true"
can go on either end of the association, on the collection, or on the join.
create table Person ( personId bigint not null primary key ) create table PersonAddress ( personId bigint not null, addressId bigint not null primary key ) 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, addressId bigint not null primary key )
create table Address ( addressId bigint not null primary key )
7.5.2. Bidirectional One to one with Join Tables 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
A bidirectional 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 )
7.5.3. Bidirectional Many-to-many with Join Tables 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
Here is an example of a bidirectional many-to-many association.
create table Person ( personId bigint not null primary key ) create table PersonAddress ( personId bigint not null, addressId bigint not null, primary key (personId, addressId) ) 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, addressId bigint not null, primary key (personId, addressId) )
create table Address ( addressId bigint not null primary key )