
/* Code Fragment 6.18 Delete Bob's records that include 1997 stating that he was Associate Director of the Computer Center. */

DELETE 
FROM INCUMBENTS
WHERE SSN = '111-22-3333'
      AND PCN = '999071'
      AND START_DATE <= '12/31/1997'
      AND END_DATE > '01/01/1997'
