Allocate the department situated in BOSTON to employee with employee number 7500 (tables EMPL, Dept)
UPDATE EMPL SET DEPTNO = ( SELECT DEPTNO FROM Dept WHERE LOC = 'BOSTON' ) WHERE EMPNO = 7500;