nerdexam
Oracle

1Z0-082 · Question #94

Examine the description of the CUSTOMERS table: 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…

The correct answer is E. SELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNT FROM customers. See the full explanation below for the reasoning.

SQL and PL/SQL

Question

Examine the description of the CUSTOMERS table:

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?

Exhibit

1Z0-082 question #94 exhibit

Options

  • ASELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNT FROM customers
  • BSELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNT FROM customers
  • CSELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNT FROM customers
  • DSELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNT FROM customers
  • ESELECT cust_first_name, cust_credit_limit * .05 AS DUE_AMOUNT FROM customers

How the community answered

(46 responses)
  • A
    2% (1)
  • B
    7% (3)
  • C
    11% (5)
  • D
    2% (1)
  • E
    78% (36)

Topics

#NULL handling#IS NOT NULL#WHERE clause filtering#credit limit query

Community Discussion

No community discussion yet for this question.

Full 1Z0-082 Practice