Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have two tables in two databases (MYSQL & SQL*Server)
I would like to implement, with talend, the following query:
delete from T1 where T1.key in (select t2.key from T2 where T1.key=T2.key and T1.date<T2.date)
is it possible ?
If yes how?
Thanks
Didier
"delete from T1 where T1.key in "+(String)globalMap.get("row2.columnName")