Ich habe 2 MySQL Tabellen.
CREATE TABLE IF NOT EXISTS
A (
text VARCHAR(255)
)
ENGINE = InnoDB;
CREATE TABLE IF NOT EXISTS
B (
text VARCHAR(255)
)
ENGINE = InnoDB;
INSERT INTO A (text) VALUES ("1"), ("2"), ("3"), ("4");
INSERT INTO B (text) VALUES ("3"), ("4"), ("5"), ("6");Wenn ich eine Full Outer Join Abfrage versuche
select * from A FULL OUTER JOIN B on A.text = B.text;
meldet MySQL einen Syntax Fehler
ERROR 1064 (42000) at line 19: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'OUTER JOIN B on A.text = B.text' at line 1