[2/6]Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER Primary Ke...
A.
UPDATE employees SET first_name = 'John' SET last_name ='Smith' WHERE employee_id = 180;
B.
UPDATE employees SET first_name = 'John', SET last_name ='Smith' WHERE employee_id = 180;
C.
UPDATE employees SET first_name = 'John' AND last_name ='Smith' WHERE employee_id = 180;
D.
UPDATE employees SET first_name = 'John', last_name ='Smith' WHERE employee_id = 180