Evaluate the following CREATE TABLEcommand:
Which statement is true regarding the above SQL statement?
Which two statements are true about transactions in the Oracle Database server?
Which two statements are true about Data Manipulation Language (DML) statements? (Choose two.)
Evaluate the following SQL statement:
SQL> select cust_id, cust_last_name "Last name"
FROM customers
WHERE country_id = 10
UNION
SELECT cust_id CUST_NO, cust_last_name
FROM customers
WHERE country_id = 30
Identify three ORDER BY clauses either one of which can complete the query.