UPDATE Customers SET Email = "
[email protected]" WHERE id = 1;
This will fail if an unique index is set on the Email column of Customers. However, alternate behavior can be defined for this case:
UPDATE Customers SET Email = "
[email protected]" WHERE id = 1 ON DUP...