When I simply try to retrieve all of the rows in my table EMPLOYEE
like this:
SELECT *
FROM EMPLOYEE AS emp;
I get the following error:
ORA-00933: SQL command not properly ended
00933. 00000 - "SQL command not properly ended"
*Cause:
*Action:
Error at Line: 14 Column: 11
If I remove the AS emp
it works just perfectly fine, but I want to rename my table here. Am I missing something totally obvious?