The title is abit too vague so let me explain more:
I have a lot of table joins that retrieves data according to my select, for example my SELECT first_name, last_name retrieves "Adam", "Tedding", it only retrieves this from the INNER JOIN Users ON Users.ID = Offers.buyer_id)
in my query, I have another field in my Cars table called "owner_id" is it possible to do another INNER JOIN which retrieves the first_name and last_name of the owner_id rather than just the buyer_id's first_name and last_name
This is my query:
SELECT Users.id, Users.first_name, Users.last_name
FROM (Offers
INNER JOIN Users ON Users.ID = Offers.buyer_id)
INNER JOIN Cars ON Cars.ID = Offers.car_id)
WHERE Cars.owner_id = 44
To explain further, all this does is gets the buyer_id's first_name and last_name, I want to get the owner_id's first_name and last_name also
I am also using Microsoft Access (If this helps)