I have 2 users table in different databases and I would like to get only unique rows from one those tables.
On the following example, I need the list of emails which have no duplicate name.
I am using Pentaho DI Kettle.
Table Users from database 1
ID | Name | Email
--- | ----------- | -------------
1 | Jonh Snow | [email protected]
--- | ----------- | -------------
2 | Sansa Stark | [email protected]
--- | ----------- | -------------
3 | Ayra Stark | [email protected]
Table Users from database 2
ID | Name | Email
--- | ----------- | -------------
1 | Jonh Stott | [email protected]
--- | ----------- | -------------
2 | Jonh Jonh | [email protected]
--- | ----------- | -------------
3 | Ayra Stark | [email protected]
Desired Result
ID | Name | Email
--- | ----------- | -------------
1 | Jonh Snow | [email protected]
--- | ----------- | -------------
2 | Sansa Stark | [email protected]
