'Convert JSON to CSV but each json object should be contained in one row
I want to convert my json file which has multiple jsons into a csv such that each json is in one column. I don't want to convert it such that each field in json is a seperate column. So there will be only one column and the entire json object is stored as string in it.
Sample JSON file:
[ {"Name" : "abcd","Id" : "123"} , {"Name" : "efgh","Id" : "124"} ]
Sample csv :
| Data |
|---|
| "Name" : "abcd","Id" : "123" |
| "Name" : "efgh","Id" : "124" |
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
