I have a web application that receives data from a JSON string. JSON is in the following format
{ "contacts": [{ "type": "contact", "name": "John Doe", "contact": 1, "links": ["Spouse", "Friends","Jane Doe","Harry Smith"] }] }
Now this is sample data. My actual DB is in Oracle. My question will be how can I build this JSON from Oracle.
source share