While using nvl function i just tried experimenting by adding alias name to column to which nvl is applied but encountered error message .
select nvl(commission_pact,0) commission_pact AS "COMM"
FROM employees;
but i am getting error message as :-
`FROM keyword not found where expected
Where is the problem in syntax?