How to create table Athena(AWS) for Json Array format?
Example JSON format:
{
"Tapes":[
{
"Status":"AVAILABLE",
"Used":0.0,
"Barcode":"TEST1217F7",
"Gateway":"Test_Report",
"UsedGB":0.0,
"Date":"06-11-2017",
"SizeGB":107.0
},
{
"Status":"AVAILABLE",
"Used":0.0,
"Barcode":"TEST1227F7",
"Gateway":"Test_Report",
"UsedGB":0.0,
"Date":"06-11-2017",
"SizeGB":107.0
}
]
}
I want to get output format below:
enter image description here
I have tried to solve the problem according to this website enter link description here