Compare two tables and generate a new one

Dear all,

I have a problem with the comparison.
I want to compare two table 1 (has 1000 rows) with table 2(has 15000rows) then generate a new table contains all the columns of the table1 PLUS a specific column from a table 2

EXAMPLE:
I want to compare the Column A of table 1 with the COLUMN A of table2 if they have the same row value or “LIKE”

Table 1 (my reference table)
A | B
x | L
j | d
jjjj | d

Table 2 (to be compared)
A | B | link
x | f | http:test.com
c | d2 | http:test2.com
j | d6 | http:test3.com
d | f | http:test4.com

Table 3 result:
A | B | link
x | L | http:test.com
j | d | http:test3.com

Bests.

Hi @Mokrani -

You can use the Joiner node for this. See the attached workflow.

2018-05-16%2012_01_49-KNIME%20Analytics%20Platform

2018-05-16%2012_02_49-Joined%20table%20-%200_4%20-%20Joiner

JoinerExample.knwf (5.1 KB)

3 Likes