Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Function to add field from Table A to Table B

Is there a function which helps to add a field from table A to Table B, whereby Table A and Table B have 1 field in common.

example:

Table A: Employee ID, Age

Table B: Employee ID, Name,

Final result: Table B: Employee ID, Name, Age

1 Solution

Accepted Solutions
swuehl
MVP
MVP

You should be able to achieve what you want either using JOIN or APPLYMAP in your script.

Have a look at Don't join - use Applymap instead and the referenced doc.

View solution in original post

2 Replies
swuehl
MVP
MVP

You should be able to achieve what you want either using JOIN or APPLYMAP in your script.

Have a look at Don't join - use Applymap instead and the referenced doc.

Anonymous
Not applicable
Author

Thx, this look exactly what I need.

Will try to implement it later today