I have a field, item_id, being passed from one transform step to another. I want to use that field multiple times in the next transform step for use in a UNION.
select x, y from table1 where item_id = ? UNION select w, z from table2 where item_id = ?
Since transforms do placeholder replacement in order by field, how do I make the item_id available to be used multiple times?