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: 
vanir88
Creator
Creator

How to join 2 tables with same column names with different data

Hi All,

 

I have 2 tables like metadata1 , metadata2 which is having same columns

Ex:

contract no, submission date, dateflag,source,creation date from Metadata1 table

Join

Contract no, submission date,dateflag,source,creation date from metadata2 table

Where dateflag =0 and submission date

So how this 2 tables are getting join based on this where condition ot with default join out. Can one please help me on this.

 

Labels (1)
1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Because these are additional rows, you should be using Concatenate instead of Join.

MyTable:
Load contract no, submission date, dateflag,source,creation date from Metadata1... 

Concatenate (MyTable)
Load contract no, submission date, dateflag,source,creation date from metadata2...

-Rob

View solution in original post

1 Reply
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Because these are additional rows, you should be using Concatenate instead of Join.

MyTable:
Load contract no, submission date, dateflag,source,creation date from Metadata1... 

Concatenate (MyTable)
Load contract no, submission date, dateflag,source,creation date from metadata2...

-Rob