[code=oracle]
SELECT emptable.empnam e, emptable.deptid , depttable.deptn ame from emptable inner join depttable
ON emptable.deptid = depttable.depti d
ERROR at line 1:
ORA-00933: SQL command not properly ended
[/code]
i m using oracle8.. while trying to use join & its types i am getting this type of errors. plz any one tell me the answer
SELECT emptable.empnam e, emptable.deptid , depttable.deptn ame from emptable inner join depttable
ON emptable.deptid = depttable.depti d
ERROR at line 1:
ORA-00933: SQL command not properly ended
[/code]
i m using oracle8.. while trying to use join & its types i am getting this type of errors. plz any one tell me the answer
Comment