Gebruik de ANSI-syntaxis en het zal veel duidelijker zijn hoe u de tabellen samenvoegt:
SELECT s.name as Student, c.name as Course
FROM student s
INNER JOIN bridge b ON s.id = b.sid
INNER JOIN course c ON b.cid = c.id
ORDER BY s.name
Gebruik de ANSI-syntaxis en het zal veel duidelijker zijn hoe u de tabellen samenvoegt:
SELECT s.name as Student, c.name as Course
FROM student s
INNER JOIN bridge b ON s.id = b.sid
INNER JOIN course c ON b.cid = c.id
ORDER BY s.name