SELECT Route.RouteID, Route.Route, STOPS.StopID, STOPS.STOP
FROM Route LEFT JOIN STOPS ON Route.Route = STOPS.ROUTE
WHERE (((Route.Route)="ABC"));
ASKER
ASKER
Microsoft Access is a rapid application development (RAD) relational database tool. Access can be used for both desktop and web-based applications, and uses VBA (Visual Basic for Applications) as its coding language.
TRUSTED BY
LEFT OUTER JOIN