One of the major features of database schema designs is to establish relations between record types (i.e. database tables).
This is currently not possible, since every record is isolated from all others.
Possible relationships can be one of the following:
1->n (one-to-many)
n->1 (many-to-one)
1->1 (one-to-one)
n->n (many-to-many)
One of the major features of database schema designs is to establish relations between record types (i.e. database tables).
This is currently not possible, since every record is isolated from all others.
Possible relationships can be one of the following:
1->n (one-to-many)
n->1 (many-to-one)
1->1 (one-to-one)
n->n (many-to-many)