.If tables or queries are already joined, check the join properties of each join line to see what type of join is in effect. Join properties determine whether one table or query contributes all of its records or only those records that match records in the other table.
Examples of join types, how to change them, and how they affect query results
.
.
.
on the toolbar in query Design view (or setting the TopValues property in the query's property sheet) to return a specified number of the highest or lowest values in a field, the query might return more records than the number you specified. This is because all records that match the last record are also returned. Therefore, a query would return all three of the following records even if you requested to see the employees with the top two sales totals because the query doesn't distinguish between the two 50,000 sales totals.
| EmployeeID | Sales |
|---|---|
| 1 | 60,000 |
| 2 | 50,000 |
| 3 | 50,000 |
If you don't want duplicate values to be returned, set the UniqueValues property in the query property sheet to Yes.