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?

link|improve this question

33% accept rate
feedback

1 Answer

You could do this using joint datasets, as discussed in the answer to this question, but if both queries are on the same database then it would be easier to combine the two queries, like so:

SELECT b.1, c.2, c.3 
FROM a
join b on a.1 = b.2
join C on b.1 = c.1 
where a.4 = 1

Or if you only want distinct values of a.1, like this:

SELECT b.1, c.2, c.3 
FROM b 
join C on b.1 = c.1 
where exists (select null from a where a.4 = 1 and a.1 = b.2)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.