Hi, I have a json sitting in clob data type in one of the table as below. I am not able to extract data from "DataAsJson"(Set 1 and Set2)
{
"RequestId":"test-RequestId"
"RequestDate":"test-RequestId"
"RequestTime":"test-RequestTime"
"DataAsJson": "[{\"Key1\":\"Value1\",\"Key2\":\"Value2\",\"Key3\":\"Value3\",
" \": [{\"Set1\":{\"Key_a\":\"Value_a\",\"Key_b\":\"Value_b\",
\"Set2\":[{\"Key_aa\":\"Value_aa\",\"Key_bb\":\"Value_bb\"}]}
}
select jt*
from table_name jte,
json_table(jte.data , '$'
columns (DataAsJason path '$.DataAsJason'))jtI have tried using nested path, $[*], but still no luck. Every time I get null.