1z1-071 Exam Question 31

Which three statements are true regarding group functions? (Choose three.)
  • 1z1-071 Exam Question 32

    Examine these SQL statements that are executed in the given order:

    What will be the status of the foreign key EMP_MGR_FK?
  • 1z1-071 Exam Question 33

    View the Exhibit and examine the structure of the CUSTOMERS table.

    You want to generate a report showing the last names and credit limits of all customers whose last names start with A, B, or C, and credit limit is below 10,000.
    Evaluate the following two queries:
    SQL> SELECT cust_last_name, cust_credit_limit FROM customers
    WHERE (UPPER(cust_last_name) LIKE 'A%' OR
    UPPER (cust_last_name) LIKE 'B%' OR UPPER (cust_last_name) LIKE 'C%')
    AND cust_credit_limit < 10000;
    SQL>SELECT cust_last_name, cust_credit_limit FROM customers
    WHERE UPPER (cust_last_name) BETWEEN 'A' AND 'C'
    AND cust_credit_limit < 10000;
    Which statement is true regarding the execution of the above queries?
  • 1z1-071 Exam Question 34

    Evaluate the following two queries:
    SQL> SELECT cust_last_name, cust_city
    FROM customers
    WHERE cust_credit_limit IN (1000, 2000, 3000);
    SQL> SELECT cust_last_name, cust_city
    FROM customers
    WHERE cust_credit_limit = 1000 or cust_credit_limit = 2000 or
    cust_credit_limit = 3000
    Which statement is true regarding the above two queries?
  • 1z1-071 Exam Question 35

    Examine this SELECT statement and view the Exhibit to see its output: (Choose two.)

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