ORA-00923: FROM keyword not found where expected
SQL> SELECT * FORM departments;
SELECT * FORM departments
*
ERROR at line 1:
ORA-00923: FROM keyword not found where expected
There is some problem at the keyword "FROM", maybe is
In my case, it's misspelled, I spell the "FROM" to "FORM" correct it is ok.
- missing
- misspelled
- misplaced
In my case, it's misspelled, I spell the "FROM" to "FORM" correct it is ok.
-----solution----
SQL> SELECT * FORM departments;SELECT * FORM departments*ERROR at line 1:ORA-00923: FROM keyword not found where expected
No comments :
Post a Comment