MCQ Single Best Answer Not Set

QWhich of the following SQL statements will return all the tuples from a relation named Employee sorted in the descending order of Name?

ID: #2807 Structured Query Language 686 views
Question Info
#2807Q ID
Not SetDifficulty
Structured Query LanguageTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A SELECT * FROM Employee SORT BY
  • B SELECT * FROM Employee ORDER BY Name DESC;
  • C SELECT * FROM Employee ORDER Name DESC;
  • D SELECT * FROM Employee SORT
Correct Answer: Option B

Explanation

SELECT * FROM Employee ORDER BY Name DESC;

Share This Question

Challenge a friend or share with your study group.