SQL - Indexes and Query Performance
A developer writes this query:
UPDATE customers SET email = 'new@example.com' WHERE id = 123;The
email column has an index. The update is very slow. What could be wrong?