Hi,
in my opinion it would be good to have a more powerfull Joiner node with the following features:
1) Currently it is only possible to choose between "Match all of the following" or "Match any of the following". It is not possible to do something combined like:
A1 = A2 AND (B1=B2 OR C1=C2)
2) The following simple SQL query is hard to do in knime:
SELECT *
FROM Table1 a
JOIN
Table2 b
ON a.Field1 like Concat ('%',b.Field2,'%')
OR b.Field2 like Concat ('%',a.Field1,'%')
I know that there are some nodes to do similarity search, calculation of distances and subset match. But if I only want to join two tables on two fields where one is contained in the other (and vice versa) it becomes difficult with knime.
Thanks in advance
Regards