CBSE Class 12 Informatics Practices Question 55 of 90

Querying Using SQL — Question 5

Back to all questions
5
Question

Question 5

Write a query that sorts the data of table student on the basis of Project-Group (in ascending order), section (in descending order), Marks (in descending order).

Answer
SELECT *
FROM student
ORDER BY Project_Group ASC, Section DESC, Marks DESC;