
/* Code Fragment 6.19 Extend Bob's position as Associate Director of the Computer Center for an additional year. */

UPDATE INCUMBENTS 
SET END_DATE = DATEADD(year,1,END_DATE)
WHERE SSN = '111-22-3333'
      AND PCN = '999071'
