Search code examples
oracletable-alias

Using Alias in query resulting in "command not properly ended"


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?


Solution

  • Oracle does not support table alias with the as.

    For example:

    SQL> select 1
      2  from dual as a;
    from dual as a
                 *
    ERROR at line 2:
    ORA-00933: SQL command not properly ended
    
    
    SQL> select 1
      2  from dual a;
    
             1
    ----------
             1
    

    The same way:

    SQL> select *
      2  from (
      3        select 1 from dual
      4       ) as a;
         ) as a
              *
    ERROR at line 4:
    ORA-00933: SQL command not properly ended
    
    
    SQL> select *
      2  from (
      3        select 1 from dual
      4       )  a;
    
             1
    ----------
             1
    

    Column alias can be both with and without the as:

    SQL> select 1 as one, 2 two
      2  from dual;
    
           ONE        TWO
    ---------- ----------
             1          2