Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / Query Select
 

Use the optional AS keyword before the alias

SQL> SQL> SELECT 10 * (12 / 3 - 1) AS "Computation" FROM dual; Computation -----------          30 SQL>