I need to convert JSON string to JSON in Oracle query.
Example String:
{\"1\":{\"qid\":1,\"aid\":1,\"a\":\"Yes\",\"isdyn\":0},\"2\":{\"qid\":2,\"aid\":7,\"a\":\"sdfbsjkb\",\"isdyn\":1},\"3\":{\"qid\":2,\"aid\":7,\"a\":\"sdfbsjkb\",\"isdyn\":1}}
and then store into an Oracle Column Table with a constraint of Valid JSON.
How can I do the same in Oracle and what is the best approach?