LEFT JOIN syntax
Hello-
I'm used to using MSSQL, but I'm now working on an Oracle system. I need to use a Left outter join for a query I'm writting, but I am getting a syntax error that I don't know how to fix. Please let me know if you see a blatant problem with this FROM clause.
FROM rss_user LEFT JOIN ent_user ON rss_user.user_id = ent_user.user_id
I get a "ORA-00933: SQL command not properly ended" error on the word JOIN.
Thanks in advance,
Mike
|