SQL - Indexes and Query Performance
Consider a table
employees with an index on department_id. What is the effect of this UPDATE statement?UPDATE employees SET department_id = 5 WHERE employee_id = 10;
