Hi
I have a small table Source (100 rec) and I have a big table MedClaim (3000 rec)
Some of Souce IDs are the same as in MedClm. Also Med Clm have a lot of duplicates.
All I want is just to add some additional fields from Medclm to Source in order to add certain fileds from MedClm to Source . I want Sorce have 100 records as before.
I use Inner join for ID fields but for some reason I got all records from MEDCLM.
I opened properties for join and tried all 3 options and still have ALL records from MEDCLM
Select *
FROM source INNER JOIN MEDCLM ON source.ID = MEDCLM._ID;
What I am doing wrong?
Thank you!
I have a small table Source (100 rec) and I have a big table MedClaim (3000 rec)
Some of Souce IDs are the same as in MedClm. Also Med Clm have a lot of duplicates.
All I want is just to add some additional fields from Medclm to Source in order to add certain fileds from MedClm to Source . I want Sorce have 100 records as before.
I use Inner join for ID fields but for some reason I got all records from MEDCLM.
I opened properties for join and tried all 3 options and still have ALL records from MEDCLM
Select *
FROM source INNER JOIN MEDCLM ON source.ID = MEDCLM._ID;
What I am doing wrong?
Thank you!