The EMPLOYEES table contains these columns:<br /> LAST_NAME VARCHAR2 (25)<br /> SALARY NUMBER (6,2)<br /> COMMISSION_PCT NUMBER (6)<br /> You need to write a query that will produce these results:<br /> 1. Display the salary multiplied by the commission_pct.<br /> 2. Exclude employees with a zero commission_pct.<br /> 3. Display a zero for employees with a null commission value.<br /> Evaluate the SQL statement:<br /> SELECT LAST_NAME, SALARY*COMMISSION_PCT<br /> FROM EMPLOYEES<br /> WHERE COMMISSION_PCT IS NOT NULL;<br /> What does the statement provide?()
A、All of the desired results
B、Two of the desired results
C、One of the desired results
D、An error statement