F
Frank Uray
Hi all
I have a DataSet with 2 tables.
Now I want to select data like a INNER JOIN from these tables.
In SQL Syntax I would write:
SELECT *
FROM table1 t1
INNER JOIN table2 t2
ON t1.f1 = t2.f1
WHERE t2.xy = 'search'
How do I select data like this from a DataSet ??
Or how else can I select data from a DataSet
when I want to get a combination of two or
more tables ??
Thanks for any comments
Best regards
Frank
I have a DataSet with 2 tables.
Now I want to select data like a INNER JOIN from these tables.
In SQL Syntax I would write:
SELECT *
FROM table1 t1
INNER JOIN table2 t2
ON t1.f1 = t2.f1
WHERE t2.xy = 'search'
How do I select data like this from a DataSet ??
Or how else can I select data from a DataSet
when I want to get a combination of two or
more tables ??
Thanks for any comments
Best regards
Frank