kumar25
2 years agoNew Contributor II
Find unmatched data using join
Hi,
I have 2 input streams, i used inner join and fetched the matching data, also to capture the unmatched data i used- Unmatched data to error view option.
I am able to find the get the unmatched/additional records from the left path. How can i get the similar records of the right path.
Below is the input i used. Want to get unmatched record from input-2
Input-1
[
{
"id": "1",
"team": "ABC"
},
{
"id": "4",
"team": "SSS"
},
{
"id": "5",
"team": "AAA"
}
]
Input-2
[
{
"location": "India",
"team": "ABC"
},
{
"location": "Canada",
"team": "SSS"
},
{
"location": "Germany",
"team": "MMM"
}
]
kumar25 - I suggest you use Outer join type and use a Router to see which records matched based on missing key values