If I write this query:
select Fname,Age*2 as Demo from Men where Demo = 5
then I get the error
ORA-00904 (Demo not identified )
How I can use it?
If I write this query:
select Fname,Age*2 as Demo from Men where Demo = 5
then I get the error
ORA-00904 (Demo not identified )
How I can use it?
Copyright © 2021 Jogjafile Inc.
You don't need "as" in Oracle.
You simply write:
However you cannot use the alias in the "where"-clause.
A Quote from a post on another site: