Examine this SQL statement: SELECT cust_id, cust_last_name "Last Name" FROM customers WHERE country_id

By | December 31, 2022

Examine this SQL statement:
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, any one of which can complete the query successfully.
(Choose three.)

Correct Answer: A,D,E