1z1-071 Exam Question 46
Examine this SELECT statement and view the Exhibit to see its output:

SELECT constraints_name, constraints_type, search_condition, r_constraint_name, delete_rule, status, FROM user_constraints WHERE table_name = 'ORDERS'; Which two statements are true about the output? (Choose two.)

SELECT constraints_name, constraints_type, search_condition, r_constraint_name, delete_rule, status, FROM user_constraints WHERE table_name = 'ORDERS'; Which two statements are true about the output? (Choose two.)
1z1-071 Exam Question 47
Which two statements are true about sequences created in a single instance database? (Choose two.)
1z1-071 Exam Question 48
Which two statements are true about the results of using the INTERSECT operator in compound queries?
1z1-071 Exam Question 49
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?
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?
1z1-071 Exam Question 50
Examine these SQL statements which execute successfully:

Which two statements are true after execution? (Choose two.)

Which two statements are true after execution? (Choose two.)