View the Exhibit and examine the structure of the PRODUCTS table. Which two tasks require subqueries? (Choose two.) A. Display the number of products whose PROD_LIST_PRICE is more than the average PROD_LIST_PRICE B. Display suppliers whose PROD_LIST_PRICE is less than…

A script abc.sql must be executed to perform a job. A database user HR, who is defined in this database, executes this command: $ sqlplus hr/hr@orcl @abc.sql What will happen upon execution? A. The command succeeds and HR will be…

Your database instance was shut down normally and then started in NOMOUNT state. You then execute this command: ALTER DATABASE MOUNT; Which two actions are performed? (Choose two.) A. The online redo logs are opened B. The online data files…

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 *…