【发布时间】:2021-01-21 12:26:39
【问题描述】:
我有一个包含 JSON 的带有 clob 的表。 JSON 已经存在,我需要更改第一个值的层次结构。
这是原始的json:
{
"configurationByAssetType" :
{
"default" :
{
"sections" :
[
....
]
}}}
我需要将 configurationByAssetType 放在新部分 - configurationByView 下:
{
"configurationByView"
{
"default" :{
"configurationByAssetType" :
{
"default" :
{
"sections" :
[
....
]
}}}}}
我想复制所有现有数据到:
{
"configurationByView"
{
"default" :{
【问题讨论】:
标签: sql json database oracle clob