Question 96
What is true about non-equijoin statement performance?
Question 97
When does a transaction complete? (Choose all that apply.)
Question 98
In the customers table, the CUST_CITY column contains the value 'Paris' for the CUST_FIRST_NAME 'Abigail'.
Evaluate the following query:
What would be the outcome?
Question 99
View the Exhibit and examine the structure of the PRODUCTS table. (Choose the best answer.)
You must display the category with the maximum number of items.
You issue this query:
SQL > SELECT COUNT(*), prod_category_id
FROM products
GROUP BY prod_category_id
HAVING COUNT(*) = (SELECT MAX(COUNT(*)) FROM porducts);
What is the result?
Question 100
Examine the description of the CUSTOMERS table:
Which three statements will do an implicit conversion?
