Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
ChristianMaury
Contributor
Contributor

How to inner join this two tables by one key and conserving their labels

I have this two tables

ChristianMaury_0-1628048518117.png

And I want to inner join them but conserving their labels except the key field

Can help me please?

2 Replies
rubenmarin1

Hi, what are labels?, you want to keep both tables? To do this you can try with inner keep

micheledenardi
Specialist II
Specialist II

OrdersCopiaEditada:
Load 
Key1,
OrdersCopiaEditada.OrderID as OrderID,
OrdersCopiaEditada.CusomerID as OrderID,
...
...
From ....;

Inner Join(OrdersCopiaEditada)
load
Key1,
OrderCopiaExacta.OrderID as ExOrderID,
OrderCopiaExacta.CustomerID as ExCustomerID,
...
...
From ...;
Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.