Insertar e inicializar una columna SQL con un valor dependiente de otra columna datos

UPDATE table
SET col = new_value
WHERE col = old_value
AND other_col = some_other_value;

UPDATE table
SET col = new_value
WHERE col = old_value
OR other_col = some_other_value;
Ill Iguana