1Z0-071 Dumps

1Z0-071 Free Practice Test

Oracle 1Z0-071: Oracle Database 12c SQL

QUESTION 46

View the exhibit and examine the data in the PROJ_TASK_DETAILS table. (Choose the best answer.)
1Z0-071 dumps exhibit
The PROJ_TASK_DETAILS table stores information about project tasks and the relation between them. The BASED_ON column indicates dependencies between tasks.
Some tasks do not depend on the completion of other tasks.
You must generate a report listing all task IDs, the task ID of any task upon which it depends and the name of the employee in charge of the task upon which it depends.
Which query would give the required result?

Correct Answer: D

QUESTION 47

Examine the structure of the ORDERS table: (Choose the best answer.)
1Z0-071 dumps exhibit
You want to find the total value of all the orders for each year and issue this command:
SQL> SELECT TO_CHAR(order_date,'rr'), SUM(order_total) FROM orders GROUP BY TO_CHAR(order_date, 'yyyy');
Which statement is true regarding the result?

Correct Answer: D

QUESTION 48

You need to produce a report where each customer’s credit limit has been incremented by $1000. In the output, the customer’s last name should have the heading Name and the incremented credit limit should be labeled New Credit Limit. The column headings should have only the first letter of each word in uppercase.
Which statement would accomplish this requirement?

Correct Answer: A

QUESTION 49

Which two statements are true regarding constraints?

Correct Answer: BD

QUESTION 50

You issued the following command: SQL> DROP TABLE employees; Which three statements are true?

Correct Answer: ABF