Oracle Database 12c SQL 1z0-071 Question # 48 Topic 5 Discussion

Oracle Database 12c SQL 1z0-071 Question # 48 Topic 5 Discussion

1z0-071 Exam Topic 5 Question 48 Discussion:
Question #: 48
Topic #: 5

The CUSTOMERS table has a CUST_CREDT_LIMIT column of data type number.

Which two queries execute successfully?


A.

SELECT TO_CHAR(NVL(cust_credit_limit * .15,'Not Available')) FROM customers;


B.

SELECT NVL2(cust_credit_limit * .15,'Not Available') FROM customers;


C.

SELECT NVL(cust_credit_limit * .15,'Not Available') FROM customers;


D.

SLECT NVL(TO_CHAR(cust_credit_limit * .15),'Not available') from customers;


E.

SELECT NVL2(cust_credit_limit,TO_CHAR(cust_credit_limit * .15),'NOT Available') FROM customers;


Get Premium 1z0-071 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.