Is there any link between these two tables? This is known as a relationship. An example of this might be something like:
I build electric guitars so I have a table that contains a list of all the guitars.
Each guitar has pickups, so I have a separate table containing the individual pickups I could use, and the guitars table has a relationship to these pickups. For simplicity, I'm going to assume that there is a one to one relationship here from the guitar to the pickups.
So, if I want to find the guitar and pickups for my nightingale model, my query would look something like this:
SELECT ID, Body, Neck, TremSystem, p.PickupName
FROM Guitars g
JOIN Pickups p
ON p.id = g.PickupId
WHERE name = 'Nightingale'
So, I am looking in two tables - Guitar is the master, and Pickups is the related table. I have joined the two tables based on a relationship of the primary key in the pickup table (id), and the relationship in the the Pickup table (Pickups). This is known as a foreign key relationship.
There are different types of join names, INNER JOIN, OUTER JOIN, LEFT JOIN, RIGHT JOIN. I would suggest that you google these and read up on them.
If you have no relationship, it's going to be difficult to see how you will combine these two tables into one temporary one.
Note the g alias for the guitar isn't strictly necessary, it's just there to differentiate for you that the ON part is using two different tables.