Anda dapat mencoba:
UPDATE test
SET test1 = NVL(test1, 'hello'),
test2 = NVL(test2, 'world')
WHERE test2 IS NULL
OR test1 IS NULL;
Meskipun mungkin memicu pembaruan Anda bahkan untuk baris yang secara efektif tidak berubah.
Anda dapat mencoba:
UPDATE test
SET test1 = NVL(test1, 'hello'),
test2 = NVL(test2, 'world')
WHERE test2 IS NULL
OR test1 IS NULL;
Meskipun mungkin memicu pembaruan Anda bahkan untuk baris yang secara efektif tidak berubah.