Informatics Practices
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).
SQL Queries
1 Like
Answer
SELECT *
FROM student
ORDER BY Project_Group ASC, Section DESC, Marks DESC;
Answered By
1 Like