Q117 The CUSTOMERS table has a CUST_CREDIT_LIMIT column of data type NUMBER.
Which two queries execute successfully? (Choose two.)
- (A). SELECT NVL(cust_credit_limit * .15, ‘Not Available’) FROM customers;
- (B). SELECT NVL2(cust_credit_limit * .15, ‘Not Available’) FROM customers;
- (C). SELECT NVL(TO_CHAR(cust_credit_limit * .15), ‘Not Available’) FROM customers;
- (D). SELECT TO_CHAR(NVL(cust_credit_limit * .15, ‘Not Available’)) FROM customers;
- (E). SELECT NVL2(cust_credit_limit, TO_CHAR(cust_credit_limit * .15), ‘Not Available’) FROM customers;
Xem thêm:
- Q115. Which two are true about diagnosing Oracle Database failure situations using Data Recovery Advisor?
- Q7. Which three Oracle database space management features will work with both Dictionary and Locally managed tablespaces?
- Q142 For which databases will fixup scripts be created?
- Q107. Which three can be done using Oracle Database Configuration Assistant (DBCA) starting from Oracle Database 19c?
- Ràng buộc UNIQUE trong SQL – SQL UNIQUE Constraint