R
Ralf
Hi All,
I have the following two queries
qryTableA: SELECT columnA, (SELECT * FROM qryTableB) FROM tableA;
qryTableB: SELECT COUNT(columnB) FROM tableB WHERE columnB=[COLUMNA_VALUE];
Now, as you can see I have the parameter 'COLUMNA_VALUE' in qryTableB. This
parameter should get assigned the value of the actual columnA cell. Is this
possible? I tried to modify qryTableA into
SELECT columnA, (SELECT * FROM qryTableB(columnA)) FROM tableA;
But all my attempts failed.
Your help is much appreciated!
Thank you, Ralf
I have the following two queries
qryTableA: SELECT columnA, (SELECT * FROM qryTableB) FROM tableA;
qryTableB: SELECT COUNT(columnB) FROM tableB WHERE columnB=[COLUMNA_VALUE];
Now, as you can see I have the parameter 'COLUMNA_VALUE' in qryTableB. This
parameter should get assigned the value of the actual columnA cell. Is this
possible? I tried to modify qryTableA into
SELECT columnA, (SELECT * FROM qryTableB(columnA)) FROM tableA;
But all my attempts failed.
Your help is much appreciated!
Thank you, Ralf