I have to parse below json in oracle that contain array element as showing below
{"orgPhoneNum":[["9952044727"],["5464646464"]]}
I tried below statement
SELECT JSON_QUERY('{"orgPhoneNum":[["9952044727"],["5464646464"]]}', '$.orgPhoneNum')
FROM DUAL;
that return the result like
But i want to get the result like
9952044727,5464646464
What changes i will need to put in my query?
