Thank you Skip.
I was able to create what I needed.
I changed the Select statement from:
SELECT A.ID, B.ID, A.`Desc`, B.`Desc`
to
SELECT B.ID, A.ID, B.`Desc`, A.`Desc`
and was able to produce data that matched my sample result
exactly.
I have never used MS Query before, but now see where...