How can we apply the following scenario:
data_set_1 has a key column and several columns. data_set_2 has an identical structure of data_set_1. We want to
what common keys among them.
what different keys among them in two direction. data_set_1 - data_set_2 and data_set_2 - data_set_1.
compare between each column in data_set_1 with its mirror in data_set_2.
The best thing to me seems to use Column Expressions node. Prior to that you need to join your tables based on RowID to have all columns you want to compare in one table. Then in Column Expressions node create one rule like this for every two columns you want to compare and result will be true or false. Define your output column name in node dialog to differentiate column pair comparisons.
In Column Expressions node you can also specify column by its index. So column(0) is addressing first column in your table. If you have a fix number of columns you can use that trick.
To use Column Comparator in a loop you can try something like this: