
/* Code Fragment 4.15 INCUMBENTS.PCN is a foreign key for POSITIONS.PCN (neither table is temporal). */

CREATE TABLE Incumbents
(
	SSN        char(11) NOT NULL,
	PCN        char(6)  NOT NULL REFERENCES POSITIONS,
	PRIMARY KEY(SSN,PCN)
)
