Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Kohli
Creator II
Creator II

what is the output for two table with same data

TableA:

Load *from inline [

Product, Price

1, apple

2, banaba

3, mango

];

TableB:

Load *from inline [

Product, Price

1, apple

2, banaba

3, mango

];

What is the output for this ?

2 Replies
Lisa_P
Employee
Employee

The script will not run with 'from' - remove this

The table will be loaded as one table, TableA as all fields are the same, they will autoconcatenate and the result will be:

Thread307215.PNG

Kohli
Creator II
Creator II
Author

Thank You Lisa. Its working.