SQL - Indexes and Query Performance
Given a table
products with a non-clustered index on category_id, what happens internally when you run this query?UPDATE products SET price = price * 1.1 WHERE category_id = 5;
