UPDATE modifies existing rows in a table.
UPDATE
UPDATE users SET city = 'Bangalore' WHERE name = 'Alice';
Without a WHERE clause, all records will be updated (be cautious!).
WHERE