I have a map with multiple key value pairs and I want to unnest them into separate rows.
"dayValueMap": {
"2022-06-01": 1,
"2022-06-02": 1,
"2022-06-03": 1,
"2022-06-04": 1,
"2022-06-05": 1,
"2022-06-06": 1,
}
I tried JSON_EXTRACT
but that only extracts json from particular schema. Here I need to convert these key values as separate rows and in the map keys are dynamic.
Can someone help?