SQL - Database Design and Normalization
You have a denormalized table where customer phone numbers are repeated in many rows. You run this update:
UPDATE Orders SET CustomerPhone = '123-4567' WHERE CustomerID = 5;but some rows still show old phone numbers. What is the most likely problem?
