I have two tables in two different environments. I need to simulate using Kettle a query like the following one:
I've tried with two table input with the following queries:Code:select * from t1 left join t2 on t1.a=t2.a where t1.b="VALUE1" OR t2.c="VALUE2"
Code:select * from t1 where t1.b="VALUE1"And then merging the data flows, but of course I miss data.Code:select * from t2 where t2.c="VALUE2"
Have you any idea about how to solve this problem?
Thank you!