1z0-071 Exam Question 136
View the Exhibit and examine the structure in the DEPARTMENTS tables. (Choose two.)

Examine this SQL statement:
SELECT department_id "DEPT_ID", department_name, 'b' FROM
departments
WHERE departments_id=90
UNION
SELECT department_id, department_name DEPT_NAME, 'a' FROM
departments
WHERE department_id=10
Which two ORDER BY clauses can be used to sort output?

Examine this SQL statement:
SELECT department_id "DEPT_ID", department_name, 'b' FROM
departments
WHERE departments_id=90
UNION
SELECT department_id, department_name DEPT_NAME, 'a' FROM
departments
WHERE department_id=10
Which two ORDER BY clauses can be used to sort output?
1z0-071 Exam Question 137
Examine the structure of the MEMBERS table.

Which query can be used to display the last names and city names only for members from the states MO and MI?

Which query can be used to display the last names and city names only for members from the states MO and MI?
1z0-071 Exam Question 138
View and Exhibit and examine the structure and data in the INVOICEtable.

Which two statements are true regarding data type conversion in query expressions? (Choose two.)

Which two statements are true regarding data type conversion in query expressions? (Choose two.)
1z0-071 Exam Question 139
View the Exhibit and examine the description for the SALES and CHANNELS tables.

You issued this SQL statement:

Which statement is true regarding the result? (Choose the best answer.)

You issued this SQL statement:

Which statement is true regarding the result? (Choose the best answer.)
1z0-071 Exam Question 140
Evaluate the following SQL statement:
SELECT product_name || 'it's not available for order'
FROM product_information
WHERE product_status = 'obsolete';
You received the following error while executing the above query:
ERROR
ORA-01756: quoted string not properly terminated
What would you do to execute the query successfully?
SELECT product_name || 'it's not available for order'
FROM product_information
WHERE product_status = 'obsolete';
You received the following error while executing the above query:
ERROR
ORA-01756: quoted string not properly terminated
What would you do to execute the query successfully?
