SQL - Indexes and Query Performance
Given a table employees with columns id, name, and department, what will be the effect of creating an index on the department column?
Consider the query: SELECT * FROM employees WHERE department = 'Sales';
