1z1-071 Exam Question 81

Which two statements are true about Oracle databases and SQL?
  • 1z1-071 Exam Question 82

    View the Exhibit and examine the details of the ORDER_ITEMS table.

    Evaluate the following SQL statements:
    Statement 1:
    SELECT MAX(unit_price*quantity) "Maximum Order"
    FROM order_items;
    Statement 2:
    SELECT MAX(unit_price*quantity) "Maximum Order"
    FROM order_items
    GROUP BY order_id;
    Which statements are true regarding the output of these SQL statements? (Choose all that apply.)
  • 1z1-071 Exam Question 83

    View the exhibit and examine the structure of the PROMOTIONS table.

    You have to generate a report that displays the promo name and start date for all promos that started after the last promo in the 'INTERNET' category.
    Which query would give you the required output?
  • 1z1-071 Exam Question 84

    Examine thestructureof the members table:

    You want to display details of all members who reside in states starting with the letter A followed by exactly one character.
    Which SQL statement must you execute?
  • 1z1-071 Exam Question 85

    Examine the description of the CUSTOMERS table:

    You need to display last names and credit limits of all customers whose last name starts with A or B In lower or upper case, and whose credit limit is below 1000.
    Examine this partial query:
    SELECT cust_last_nare, cust_credit_limit FROM customers
    Which two WHERE conditions give the required result?