The result should like this
Code: Select all
id naam intro
1 john jaap
1 john klaas
2 jan
Code: Select all
SELECT S.Id, S.Naam, I.Intronaam
FROM Inschrijvers S LEFT JOIN Introducees I ON I.Id = S.Id
Studio only gives the opportunity of INNER, LEFT OUTER and RIGHT OUTER JOIN. Even when I changed the LEFT OUTER JOIN into LEFT JOIN, the designer still gives LEFT OUTER JOIN.
Can studio be expanded with LEFT JOIN and RIGHT JOIN?