Here is my example:
select row_x from table_1 where row_y = (select row_a from table_2 where row_b = x)
The problem I am facing is that my query should return multiple rows if the subquery returns multiple rows.
Ideally, this would mean something similar to:
'select row_x from table_1 where row_y = '<first row from subquery>' or row_y = '<second row from subquery>' etc.
How can i do this? Thanks!
source share