I tried this:
SELECT *
FROM (SELECT *
, ROW_NUMBER() OVER (ORDER BY vernum DESC, defvern DESC) AS RowNumber
FROM MyTable
INNER JOIN AnotherTable ON MyTable.id = AnotherTable.dataid
WHERE MyTable.defid = 123456
AND MyTable.attrid = 10) AS a
WHERE a.RowNumber = 1;
I get this error:
ORA-00933: SQL command not properly ended
00933. 00000 - "SQL command not properly ended"
*Cause:
*Action:
Error at Line: 8 Column: 37
When I remove AS a
and the WHERE a.RowNumber = 1;
the query works fine.
Is there a reason I can't assign the subquery to an alias?
Oracle does not support table alias with the
as
.For example:
The same way:
Column alias can be both with and without the
as
: