I have a problem with FULL JOIN keyword used in MySQL
SELECT Name,Surname,Notes.Payment FROM Persons FULL JOIN Notes ON Persons.id=Notes.P_Id
it give me this error :
Unknown column 'Persons.id' in 'on clause'
but if I call with LEFT JOIN or RIGHT JOIN, the results appear properly.
What is the problem with FULL JOIN ?
Thank you
MySQL does not (yet) support
FULL JOIN.Use something like this:
The error you get is because
FROM Persons FULL JOIN Notes ONis parsed as: