Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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