I have JSON as below,
{
"value": [
{
"id": "123",
"createdDateTime": "2021-09-17T14:15:18Z"
},
{
"id": "124",
"createdDateTime": "2022-09-17T14:15:18Z"
}
]
}
am trying to get the output as 2 separate records and store it in clob column(values), any help would be appreciated.
values {"id": "123",
"createdDateTime": "2021-09-17T14:15:18Z"
}{"id": "123",
"createdDateTime": "2021-09-17T14:15:18Z"
}