JOIN syntax for Oracle 8i
I have a SQL statement which looks like this:
SELECT * FROM user.table table LEFT OUTER JOIN user.table2 table2 ON table.column = table2.column;
Which seems to be the right syntax according to the Oracle SQL reference, but when I try and execute it I get the error:
ERROR at line 1:
ORA-00933: SQL command not properly ended
Is there a difference between 9i and 8i syntax?