Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
New-here1
Contributor III
Contributor III

Joins

Hello, 

I have 2 tables that I would like to join together

Table 1: ID

1234

Table 2: Name

Book 

I would like the data in the table to join together and just be one table, so rather than it showing like the above, it should look like this: 

Table: ID - Name

Data: 1234 - Book 

I would also like to add the hypen in there too 

 

Thank you 

Labels (2)
1 Solution

Accepted Solutions
BrunPierre
Partner - Master
Partner - Master

ID &'-'& Name as Newfield

View solution in original post

3 Replies
BrunPierre
Partner - Master
Partner - Master

Table1:
LOAD ID

FROM Table1;

Join
Table2:
LOAD Name

FROM Table1;

New-here1
Contributor III
Contributor III
Author

Hi Thank you for your comment. 

I don't think I was very clear in my question above (sorry). I have 2 tables but, they are not called table 1 and table 2, I was simply advising that I have 2 tables and what the names of those tables are. So currently, this is what I have

ID 

Name

Those are the table names rather than table 1 and table 2

How does the code change to reflect to this please? Thank you

BrunPierre
Partner - Master
Partner - Master

ID &'-'& Name as Newfield