Old Congestion
From SQLZoo
Congestion charging database
Graduated questions
ER diagram for the Congestion charging database:
camera(id, perim)
keeper(id, name, address)
vehicle(id, keeper)
image(camera, whn, reg)
permit(reg, sDate, chargeType)
Sample query
List the vehicles for which 'Strenuous, Sam' is the registered keeper. The link between Keepers and Vehicles is via the foreign key specified in the CREATE TABLE vehicle statement. Note the line:
,FOREIGN KEY(keeper) REFERENCES keeper(id)
This will be the basis of our join condition.
SELECT vehicle.id
FROM vehicle JOIN keeper
ON vehicle.keeper = keeper.id
WHERE keeper.name = 'Strenuous, Sam'