Minty
AWF VIP
- Local time
- Today, 00:34
- Joined
- Jul 26, 2013
- Messages
- 10,646
You have used a full join between the two tables.
Paste this SQL into your query SQL design view and you will see the difference.
If you click on the Join line in the query design view it will show you the available options.
Paste this SQL into your query SQL design view and you will see the difference.
Code:
SELECT tblTestRigs.RigID, tblTestRigs.BayID, tblTests.EquipID, tblTests.TestType, tblTests.TestCompleted, tblTests.Failure, tblTests.TestComments, tblTestRigs.InService
FROM tblTestRigs LEFT JOIN tblTests ON tblTestRigs.LocationID = tblTests.LocationID;
If you click on the Join line in the query design view it will show you the available options.