Hi all,
I have two independent datasets(columns) that have different length. I want to compare them, and then create a thirds dataset based on such comparison. The following simple example illustrates the task.
Considering two very simple tables,
Table 1
Table 2
By comparing both I would like to get the following table as output of the comparison,
| ID | Mapped |
| 1 | yes |
| 2 | yes |
| 3 | yes |
| 4 | yes |
| 5 | no |
| 6 | no |
| 7 | no |
| 8 | no |