Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How to write below query in script:
select ID from A
where A.ID IN ( select ID from B)
table1:
LOAD ID from B;
table2:
LOAD ID from A
where Exists(ID);
Drop Table table1;
table1:
LOAD ID from B;
table2:
LOAD ID from A
where Exists(ID);
Drop Table table1;
Thanks Marco