I am doing transformation using Spoon. I have an input table with this query:
select id, idOrder, date from TBL1 where date='2013-03-20';
I want to give an idOrder
value manually from input. e.g. idOrder = 405
I see 'Get system info' but it has only dates.
How can I give variable input to the 'Table Input'?
Maybe I can say:
select ?, idOrder, date from TBL1 where date='2013-03-20';
But how can I provide a value for the ?
placeholder?