in oracle 19c plsql i have such string
[{"Books":"book1","pages":"100"},{"Books":"book1","pages":"200"}]
i want to parse it using dbms_json to get table
| Books | pages |
|---|---|
| book1 | 100 |
| book2 | 200 |
how to do this? anyone can help?
in oracle 19c plsql i have such string
[{"Books":"book1","pages":"100"},{"Books":"book1","pages":"200"}]
i want to parse it using dbms_json to get table
| Books | pages |
|---|---|
| book1 | 100 |
| book2 | 200 |
how to do this? anyone can help?