First off, what you're looking for is a JOIN operation in your query.
JOIN is a feature of SQL Language that allows you to join two tables on a field.
Eg:
SELECT Cars.*, Driver.DriverName FROM Cars JOIN Drivers ON Cars.DriverID = Drivers.ID
This would return all the colunms of Cars, and add...