In Oracle 12c I created one table with json objects.
Imagine the next sample:
| id | date | json_obj |
|---|---|---|
| 1 | 01-MAY-2021 | { key_1: val1, key_2: val2} |
Now I want to update key_2 value, and append key_3: val3 into the same json object related with id 1.
That could be edited? or I must to overwrite?