3. ORA-00923 from keyword not found where expected
If you faces this error, Check out follow things.
- Checks the SELECT portion of COLUMN between SELECT and FROM
Ex)
GENDER AS g,
LAST_VISIT_DT AS l,
FROM table_name
-> you must delete ‘,’ where in front of FROM
GENDER AS g,
LAST_VISIT_DT AS l
FROM table_name
- Check the alias.
Ex1) where you put the '', delete or change that.
Ex2) as the game -> never put the space.
-> as tg
- Syntax check.
Ex) The part that fetches the upper data.
[MSSQL]
SELECT TOP 10*
–> Change
[ORACLE]
WHERE ROWNUM <= 10
Written on September 12, 2017