Joining Multiple Tables with SQL Inner Join Statements

SELECT * FROM drivers, vehicles, locations
WHERE drivers.location = vehicles.location
AND vehicles.location = locations.location

No comments: