Executing the line of SQL:
SELECT
BIRTH_MONTH "BIRTH MONTH",
BIRTH_COUNTRY "BIRTH COUNTRY",
BIRTH_CITY "BIRTH CITY",
BIRTH_COUNTY "BIRTH COUNTY"
FROM STUDENT_TABLE
LEFT OUTER JOIN SYS_GEN.USER_DOB
WHERE BIRTH_MONTH (BIRTH MONTH) <=
USER_DOB.SYS_GEN_YEAR_MONTH
ORDER BY BIRTH_MONTH;
gives me the following ORACLE error: ORA-00905: Missing keyword
The error is at this line
WHERE BIRTH_MONTH (BIRTH MONTH) <=
I'm not sure what the missing key words are
ON
clause. (Instead of WHERE.) – jarlh