You ask how to join two fields but that's not what your example shows. Your example seems to concatenate two lists. You would use a union query to concatenate two queries or tables into a single recordset.
Select fld1, fld2, fld3 From tblA
Union Select fld1, fld2, fld3 From tblB;