I have a json array string like below
[{a:100},{a:200},{a:300},{a:400}]
Passing it as a CLOB input parameter to the Stored procedure
How can i get a tabular output like below with in sql so that i can bulk insert in a table
Value
-----------
100
200
300
400
I have tried some examples mentioned at oracle docs but unable to find the working example with above mentioned output.
Thanks