OCP CBT Question 547
Please solve the following question.
You execute the following commands in a SQL*Plus session: ```sql DELETE FROM employees WHERE department_id = 10; SAVEPOINT sp1; UPDATE employees SET salary = salary * 1.1 WHERE job_id = 'IT_PROG'; ROLLBACK TO sp1; COMMIT; ``` What will be the state of the `employees` table after these commands are executed?