Which of the following Oracle SQL statements is not correct?
2018
Which of the following Oracle SQL statements is not correct?
Answer: C. SELECT * FROM Customers ORDER BY Country ASC, DESC CustomerName;
- A.
SELECT * FROM Customers
ORDER BY Country; - B.
SELECT * FROM Customers
ORDER BY Country DESC; - C.
SELECT * FROM Customers
ORDER BY Country ASC, DESC CustomerName; - D.
SELECT * FROM Customers
ORDER BY Country ASC, CustomerName DESC;
Attempted by 900 students.
Show answer & explanation
Correct answer: C
Loading lesson…