Multiple Data Sets
I am trying to use values from one data set in another data set where clause, is this possible?
Example:
DataSet1
Select A,B,C
From TableA
Where A=1
DataSet2
Select E,F,G
From Table B
where DataSet1.A = DataSet2.E
0