The EMPLOYEES table contains these columns: 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