Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Split a table into 2 tables

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

1 Reply
alexandros17
Partner - Champion III
Partner - Champion III

Tab1:

load a,b from mytab;

Tab2:

load c,d from mytab;

let me know