- relation (of degree n)
- A set of n-tuples drawn from n named domains S1 through Sn, equivalently a subset of their Cartesian product. Degree 1, 2, and 3 relations are called unary, binary, and ternary.
- relationship
- The domain-unordered counterpart of a relation, formally an equivalence class of relations that are equivalent under permutation of domains. This is what users are meant to interact with, so column position never appears in their model.
- primary key
- A domain or combination of domains whose values uniquely identify each n-tuple of a relation. It is nonredundant if no participating simple domain is superfluous, and one nonredundant key is chosen arbitrarily when a relation has several.
- foreign key
- A domain or domain combination of relation R that is not the primary key of R but whose elements are values of the primary key of some relation S, where S may be R itself. In the relation supply, supplier, part, and project are each foreign keys.
- nonsimple domain
- A domain whose elements are themselves relations rather than atomic values, roughly what existing terminology called a repeating group. Codd's example is salary history as a domain of the employee relation.
- normal form
- The state in which every relation is defined only on simple domains, so that each is representable as a two-dimensional column-homogeneous array. It is reached by the normalization procedure that copies parent primary keys into subordinate relations.
- natural join
- For binary R and S with π2(R) = π1(S), the ternary relation consisting of all (a,b,c) with R(a,b) and S(b,c). It is the join that always exists in that case, it is associative, and its projections recover R and S exactly.
- point of ambiguity
- An element of the joining domain that has more than one relative under R and also more than one under S. Its presence is what allows several distinct joins of R with S to exist.
- connection trap
- The erroneous conclusion that following all pointer paths from a supplier through parts to projects yields the valid set of projects supplied by that supplier. It is correct only when the target relation is, for all time, the natural composition of the other two.