I have a two tables in SQL Server, for the purpose of this question, lets say they are called TableA and TableB.
Both of these tables contain an Id column which can be used to join the two tables together.
For example:
SELECT * FROM TableA a INNER JOIN TableB b on a.Id = b.Id
In Dynamics, I have also created TableA and TableB, and imported the data.
Although I'm confused how to create a relationship based on the one specific Id column. If I create a relationship it seems to want to do its own join, so I'm getting stuck how do to this. Can anyone suggest a guide for this?