Free 1Z0-071 Exam Dumps

Question 66

View the Exhibit and examine the structure in the EMPLOYEES tables.
1Z0-071 dumps exhibit
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?

Correct Answer:D

Question 67

View the Exhibit and examine the data in the PRODUCTS table. (Choose the best answer.)
1Z0-071 dumps exhibit
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?

Correct Answer:A

Question 68

View the Exhibit and examine the details of the PRODUCT_INFORMATION table.
1Z0-071 dumps exhibit
You have the requirement to display PRODUCT_NAME and LIST_PRICE from the table where the CATEGORYJD column has values 12 or 13, and the SUPPLIER_ID column has the value 102088. You executed the following SQL statement:
SELECT product_name, list_price FROM product_information
WHERE (category_id = 12 AND category_id = 13) AND supplier_id = 102088; Which statement is true regarding the execution of the query?

Correct Answer:B

Question 69

Examine the structure of the EMPLOYEES table. (Choose two.)
1Z0-071 dumps exhibit
You must display the maximum and minimum salaries of employees hired 1 year ago. Which two statements would provide the correct output?

Correct Answer:BD

Question 70

View the Exhibit and examine the structure of the CUSTOMERS table.
1Z0-071 dumps exhibit
Using the CUSTOMERS table, you must generate a report that displays a credit limit increase of 15% for all customers.
Customers with no credit limit should have “Not Available” displayed. Which SQL statement would produce the required result?

Correct Answer:C