Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have this two tables
And I want to inner join them but conserving their labels except the key field
Can help me please?
Hi, what are labels?, you want to keep both tables? To do this you can try with inner keep
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 ...;