Hi,
I have the following SQL statement that uses a column alias "SUMAREAS". When I execute it, I get [ORA-00904 : Invalid Identifier] error message. Is there a way to get around this problem?
Thank you!!
Susie
SELECT
SUM( A + B ) AS SUMAREAS,
Round(SUMAREAS/2,2) as AVGAREA
FROM myTable
I have the following SQL statement that uses a column alias "SUMAREAS". When I execute it, I get [ORA-00904 : Invalid Identifier] error message. Is there a way to get around this problem?
Thank you!!
Susie
SELECT
SUM( A + B ) AS SUMAREAS,
Round(SUMAREAS/2,2) as AVGAREA
FROM myTable