Question 216
View the Exhibit and examine the structure of ORDERS and CUSTOMERS tables.

There is only one customer with the cust_last_name column having value Roberts. Which INSERT statement should be used to add a row into the ORDERS table for the customer whose CUST_LAST_NAME is Roberts and CREDIT_LIMIT is 600?

There is only one customer with the cust_last_name column having value Roberts. Which INSERT statement should be used to add a row into the ORDERS table for the customer whose CUST_LAST_NAME is Roberts and CREDIT_LIMIT is 600?
Question 217
Examine the structure of the INVOICEtable.

Which two SQL statements would execute successfully?
SELECT inv_no, NVL2(inv_date, 'Pending', 'Incomplete')

Which two SQL statements would execute successfully?
SELECT inv_no, NVL2(inv_date, 'Pending', 'Incomplete')
Question 218
Examine the data in the CUST_NAMEcolumn of the CUSTOMERStable.
CUST_NAME
-------------------
Renske Ladwig
Jason Mallin
Samuel McCain
Allan MCEwen
Irene Mikilineni
Julia Nayer
You need to display customers' second names where the second name starts with "Mc" or "MC".
Which query gives the required output?
CUST_NAME
-------------------
Renske Ladwig
Jason Mallin
Samuel McCain
Allan MCEwen
Irene Mikilineni
Julia Nayer
You need to display customers' second names where the second name starts with "Mc" or "MC".
Which query gives the required output?
Question 219
Which three statements are true regarding subqueries? (Choose three.)
Question 220
Which two statements best describe the benefits of using the WITH clause? (Choose two.)
