I've into BIRT a query like this
SELECT a.1, a.2, a.3 FROM a WHERE a.4 = 1
then I write another query as
SELECT b.1, c.2, c.3 FROM b join C on b.1=c.1 WHERE b.2=?
I would use to parameter, instead of '?', all values of column a.1 from first query. It's possible in BIRT?