Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
deepthree
Contributor
Contributor

Concatenate and rename

Hello

I want to concatenante two table and I used the script like this :

LOAD a, b, c from table1.csv;

concatenate LOAD a, c from table2,csv;

But how rename the concatenated table as "my_final_table" ?

 

1 Solution

Accepted Solutions
Taoufiq_Zarra

Input :

LOAD a, b, c from table1.csv;

concatenate LOAD a, c from table2,csv;

 

Rename Table Input to my_final_table;

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉

View solution in original post

1 Reply
Taoufiq_Zarra

Input :

LOAD a, b, c from table1.csv;

concatenate LOAD a, c from table2,csv;

 

Rename Table Input to my_final_table;

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉