Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to add new column manually to the existing table
If table1 is your table with columns A ,B and you need to add column C.
table2
Noconcatenate
Load *,'Calculation/Mapping/anything' as C Resident table1;
Will create table2 with 3 columns and you can drop the table1 or handle it any other ways you need.
If table1 is your table with columns A ,B and you need to add column C.
table2
Noconcatenate
Load *,'Calculation/Mapping/anything' as C Resident table1;
Will create table2 with 3 columns and you can drop the table1 or handle it any other ways you need.