Question: 1
Which two statements are true about sequences crated in a single instance Oracle database?
Question: 2
Which three statements are true regarding the SQL WHERE and HAVING clauses?
Question: 3
Evaluate the following statement.
INSERT ALL
WHEN order_total < 10000 THEN
INTO small_orders
WHEN order_total > 10000 AND order_total < 20000 THEN
INTO medium_orders
WHEN order_total > 200000 THEN
INTO large_orders
SELECT order_id, order_total, customer_id
FROM orders;
Which statement is true regarding the evaluation of rows returned by the subquery in the INSERT statement?
Question: 4
Which two statements are true regarding the SQL GROUP BY clause?
Question: 5
You issue this command which succeeds:
SQL> DROP TABLE products;
Which three statements are true?