1z0-071 Exam Question 116

Examine the structure of the PROMOTIONS table:

Management requires a report of unique promotion costs in each promotion category.
Which query would satisfy this requirement?
  • 1z0-071 Exam Question 117

    Which three actions can you perform by using the ALTER TABLE command?
  • 1z0-071 Exam Question 118

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

    You want to select all employees having 100 as their MANAGER_ID manages and their manager.
    You want the output in two columns: the first column should have the employee's manager's LAST_NAME and the second column should have the employee's LAST_NAME.
    Which SQL statement would you execute?
  • 1z0-071 Exam Question 119

    Which two are true about queries using set operators (UNION, UNION ALL, INTERSECT and MINUS?
  • 1z0-071 Exam Question 120

    View the Exhibit and examine the data in the PRODUCTS table. (Choose the best answer.)

    You must display product names from the PRODUCTS table that belong to the
    'Software/other' category with minimum prices as either $2000 or $4000 and with no unit of measure.
    You issue this query:
    SQL > SELECT prod_name, prod_category, prod_min_price FROM products
    Where prod_category LIKE '%Other%' AND (prod_min_price = 2000 OR prod_min_price
    4000) AND prod_unit_of_measure <> ' ';
    Which statement is true?