Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a table with column A, B, C, D. How can I split this into 2 tables: 1 with column A, B; 1 with column C, D ?
Thanks
Tab1:
load a,b from mytab;
Tab2:
load c,d from mytab;
let me know