References (PDM)

A reference is a link between a parent table and a child table, which defines a referential integrity constraint between column pairs for a primary or alternate key and a foreign key, or between user-specified columns. Each column pair is linked by a join, and each reference can contain one or more joins. Each value in the child table column is equal to the value in the parent table column.

In the following example, the STORE parent table is linked to the SALE child table by a reference containing a join which links the primary key column STORE ID (the referenced column) to the foreign key column STORE ID (the referencing column).