Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
i want to load a column emp_name from a table employees using order by and where clause.
where emp_id is 1,2,3.
orderby emp_id.
i need to load this through script
Try with this
tmpSource:
Load
*,
emp_id
From Location;
Noconcatenate
FinalTable:
resident tmpSource
where Match(emp_id,1,2,3)
order by emp_id Asc;
Drop Table tmpSource;