Masukkan dan inisialisasi kolom SQL dengan nilai tergantung pada data kolom lain

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