Pre-19c, si desea cambiar cualquier valor en un documento JSON, debe reemplazar todo:
create table t (
doc varchar2(100)
check ( doc is json )
);
insert into t values ('{
"changeMe" : "to null",
"leaveMe" : "alone"
}');
update t
set doc = '{
"changeMe" : null,
"leaveMe" : "alone"
}';
select * from t;
DOC
{
"changeMe" : null,
"leaveMe" : "alone"
}
Tenga en cuenta que cuando llegue a 19c y use json_mergepatch
, estableciendo un atributo en null
lo elimina del documento:
update t
set doc = json_mergepatch (
doc,
'{
"changeMe" : null
}');
select * from t;
DOC
{"leaveMe":"alone"}