
I need to remove the Null in the commission column and change it to 'No commission'. Not sure how to write that code. I tried to use UPDATE or SET code but got errors.
This is the code I got so far.
SELECT First_Name || ' ' || Last_Name AS "Full Name", ' NZD' || ' ' || SALARY AS "Salary",
COMMISSION_PCT AS "COMMISSION_%",SALARY * COMMISSION_PCT AS "Commission"
FROM EMPLOYEES
ORDER BY LAST_NAME desc;