SQL - Indexes and Query Performance
A table
inventory has a clustered index on product_id and a non-clustered index on location. You run this update:UPDATE inventory SET location = 'Warehouse B' WHERE product_id = 100;Which indexes are affected and how?
