Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: UPDATE SET of multiple columns
OK, but something like this doesnt work either, right:
update table
set col1 = (select 0 from dual where col1 is null),
col2 = (select 0 from dual where col2 is null),
col3 = (select 0 from dual where col3 is null)
;
Received on Thu Apr 13 2006 - 14:00:54 CDT