I'm receiving multiple JSON files and loading them into a Snowflake variant field. I would like to then extract some of the child arrays into a separate table but am having issues with that. Here is an example of the JSON:
{
"ordernumber": 123,
"customername": "Smith,John",
"orderdata": {
"Order": {
"ItemCountGroup": {
"items": {
"item": [
{
"ItemCount": "1.00"
},
{
"ItemCount": "1.00"
}
]
}
},
"ItemDescGroup": {
"items": {
"item": [
{
"ItemDesc": "Series 100 Food Bucket"
},
{
"ItemDesc": "Series X Leather Gloves"
}
]
}
},
"ItemTypeGroup": {
"items": {
"item": [
{
"ItemType": "Bucket/Pail"
},
{
"ItemType": "Gloves"
}
]
}
},
}
}
}
Ideally, I'd like to flatten the table so that it comes out:
ItemCount | ItemDesc | ItemType | OrderNumber |
---|---|---|---|
1.00 | Series 100 Food Bucket | Bucket/Pail | 123 |
1.00 | Series X Leather Gloves | Gloves | 123 |
I've tried a series of different flatten commands and lateral flattens but usually am getting a row for every combination possible between each of the elements. Is there a way or example out there for me to get these into the required format?
If you have a table named
T1
with your JSON in a variant column namedV
, you can flatten each part in a CTE and join them by the index created during the flattening: