I have already extracted the string of JSON data from a url and stored this in a CSV file.
The problem I am facing now is that I would like to represent this data in a table format so that I can upload this to my DB.
An example of my raw JSON data below:
{"pizza":[{"url":"www.pizza.com/1.json","id":1,"via":{"channel":"web","source":{"from":{"[email protected]"},"to":{"[email protected]"},"rel":null}},"created_at":"2013-07-09T08:38:35Z","updated_at":"20132-08-13T09:33:00Z","type":"incident"}]
An example of my CSV formatted JSON:
http://s18.postimg.org/alwadflsp/my_Code.png
An example of my desired output:
http://s18.postimg.org/4md4niqe1/myoutput.png
Would really appreciate help regarding this.
Thank you