条件に基づいて2つの配列をマージ
UNION ALLキーワードを条件付きで使用して2つの配列を1つに結合し、その内容を反復処理します。
このタスクについて
{
"customers": {
"Platinum": [
{
"region": "West Midlands",
"cid": 12,
"name": "E. W. Gilbert"
},
{
"region": "Greater Manchester",
"cid": 75,
"name": "John Doe"
}
],
"Gold": [
{
"region": "West Midlands",
"cid": 13,
"name": "G. K. Peatling"
},
{
"region": "Greater Manchester",
"cid": 76,
"name": "Tom Cruise"
}
]
}
}
手順
タスクの結果
[
{
"customers": [
{
"region": "West Midlands",
"cid": 12,
"name": "E. W. Gilbert",
"ranking": "Platinum"
},
{
"region": "Greater Manchester",
"cid": 75,
"name": "John Doe",
"ranking": "Platinum"
},
{
"region": "West Midlands",
"cid": 13,
"name": "G. K. Peatling",
"ranking": "Gold"
},
{
"region": "Greater Manchester",
"cid": 76,
"name": "Tom Cruise",
"ranking": "Gold"
}
]
}
]