57、Examine the description or the CUSTOMERS table:
Name Null? Type
CUST_ID NOT NULL NUMBER
CUST_FIRST_NAM 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?