I have to join two tables, but there is no for those fields. Is it possible to do it?
For example
TableA (ID, MachineID, EquipmentID)
Machine (MachineID, Description)
There is a mapping for TableA.MachineID => Machine.MachineID
. I can use Join for that and no issues with it.
Now I need to join TableA.EquipmentID => Machine.MachineID
. Is It possible to do this without mapping fields?