Question: 1
View the Exhibit and examine the structure of the ORDER_ITEMS and ORDERS tables.
You are asked to retrieve the ORDER_ID, product_ID, and total price (UNIT_PRICE multiplied by QUANTITY), where the total price is greater than 50,000.
You executed the following SQL statement:
SELECT prder_id, product_id, unit_price*quantity ''Total Price''
FROM order_items
WHERE unit_price*quantity > 50000
NATURAL JOIN orders;
Which statement is true regarding the execution of the statement?
Question: 2
Which two commands execute successfully?
*MANAGER is an existing role with no privileges or roles.
*EMP is an existing role containing the CREATE TABLE privilege.
*EMPLOYEES is an existing table in the HR schema.
Question: 3
Which two statements are true regarding the UNION and UNION ALL operators? (Choose two.)
Question: 4
Which three privileges can be restricted to a subset of columns in a table? (Choose three.)
Question: 5
Which statement is true about Data Manipulation Language (DML)?