1z0-071 Exam Question 236

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?
  • 1z0-071 Exam Question 237

    Examine the description of the ORDER_ITEMStable:

    Examine this incomplete query:

    Which two can replace <clause> so the query completes successfully? (Choose two.)
  • 1z0-071 Exam Question 238

    Whith three statements are true about built in data types?
  • 1z0-071 Exam Question 239

    View the Exhibit and examine the structure in the EMPLOYEES tables.

    Evaluate the following SQL statement:
    SELECT employee_id, department_id
    FROM employees
    WHERE department_id= 50 ORDER BY department_id
    UNION
    SELECT employee_id, department_id
    FROM employees
    WHERE department_id= 90
    UNION
    SELECT employee_id, department_id
    FROM employees
    WHERE department_id= 10;
    What would be the outcome of the above SQL statement?
  • 1z0-071 Exam Question 240

    View the Exhibit and examine PRODUCTS and ORDER_ITEMS tables.

    You executed the following query to display PRODUCT_NAME and the number of times the product has been ordered:
    SQL>SELECT p.product_name, i.item_cnt
    FROM (SELECT product_id, COUNT (*) item_cnt
    FROM order_items
    GROUP BY product_id) i RIGHT OUTER JOIN products p
    ON i.product_id = p.product_id;
    What would happen when the above statement is executed?