Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have table bellow, the code for CCC is empty, my need is : if type is '3', then show code of the same customer where type is 1 as code of CCC.
The final table will be like bellow
how to proceed?
Try like this
Data:
LOAD
CUSTOMER,
NAME,
TYPE
IF(TYPE= 3, '103', CODE) AS CODE
FROM DataSource;
Regards,
Jagan.