Examine the description of the CUSTOMERS table:Name Null TYPE
--------------------------------------------------------------------------------------
CUST_ID NOT NULL NUMBER
CUST_FIRST_NAME' NOT NULL VARCHAR2(20)
CUST_LAST_NAME NOT NULL VARCHAR2(30)
CUST_INCOME_LEVEL VARCHAR2(30)
CUST_CREDIT_LIMIT NUMBER
For customers whose income level has a value, you want to display the first name and due amount as 5% of their credit limit. Customers whose due amount is null should not be displayed. Which query should be used?