0

I always got an error from mysql my syntax is:

SELECT n.id, n.name, s.Surname, s.Gender FROM name FULL JOIN Surname ON n.id = s.id;

(i was doing full join) help me

1 Answers1

0

You have not specified variables(alias names) "n" and "s". please add them after the table names and then try.