Examine the description of EMPLOYEES table:
Which three queries return all rows for which SALARY + COMMISSION is greater than 20000? (Choose three.)
Examine the description of EMPLOYEES table:
Which three queries return all rows for which SALARY + COMMISSION is greater than 20000? (Choose three.)
To return all rows for which SALARY + COMMISSION is greater than 20000, we need to account for cases where the COMMISSION might be NULL. Options B and F correctly handle NULL values by using NVL2 and NVL, respectively, to substitute 0 when COMMISSION is NULL. Option D uses NULLIF which will not change the sum as it returns NULL if the COMMISSION is 0, thus not affecting the comparison. Options A and C are incorrect because they use NVL2 and NVL in a way that does not correctly ensure a proper comparison when commission is NULL. Option E is incorrect because COALESCE evaluates each argument and returns the first non-NULL, and doesn’t handle adding both SALARY and COMMISSION.
ABF is the correct answer
ABF is the correct answer