
/* Code Fragment 4.12 Prevent current duplicates in INCUMBENTS, assuming no future data. */

CREATE TABLE Incumbents
(
	SSN        char(11) NOT NULL,
	PCN        char(6)  NOT NULL,
	START_DATE datetime NOT NULL,
	END_DATE   datetime NOT NULL
	UNIQUE(SSN,PCN,END_DATE)
)
