Insira e inicialize uma coluna SQL com valor dependente de outra coluna dados

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