Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to write a condition with two where condition on Context integer value on tOracleInput
Select order_num from order_table
where id >= context.a1
and id<= context.a2;
Where a1 and a1 and id are all integer value.How to achieve that in tOracleInput.
Try this for the condition:
"id >= " + context.a1 + " and id<= " + context.a2
Hope this helps.