I have the following DB structure
Table1( ID1,Col1,Col2) and Table1( ID2,Col3,Col4)
Table1 and Table2 are separate table and don't have any relationships between them.
and I would like to achieve the following result
SELECT * FROM Table1 JOIN Table2 ON Table1.Col1= Table2.Col3
How could I achieve that using LLBL Gen Adapter.
Thanks.