There are usually many different ways to obtain the same results. Not to mention the differences between several right ways and several wrong ways, but that's a post for another day. Consider the following query:
SELECT Record
FROM Table
WHERE RecordID = 1 OR
RecordID = 2
ᅠ
Results:
RECORD
----------
This
That
The table records a RecordID of 1 and 2 for two records named Record (bad names used for an example only) which contain this and that. When queried the results return two records. If you need to return these records in a special order, or parent/child association (RecordID 1 belongs to RecordID 2) you could also consider the following query which will name the two results as two different fields in one horizontal query row.
SELECT SubTable.Record AS SubRecord, Table.Record AS Record
FROM Table AS SubTable INNER JOIN
Table ON SubTable.RecordID = 1 AND Table.RecordID = 2
ᅠ
Results:
SUBRECORD RECORD
---------------------------
Thisᅠᅠᅠᅠᅠᅠᅠᅠᅠᅠᅠ That
If you find this post useful please leave a comment and let me know how you used the information