OCP CBT Question 554

Please solve the following question.

The `employees` table has a `commission_pct` column that allows NULL values, but the `department_id` column is defined as `NOT NULL`. Examine the following statement: ```sql UPDATE employees SET commission_pct = NULL, department_id = NULL WHERE employee_id = 100; ``` Which statement describes the outcome if `employee_id = 100` exists?