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).
SELECT * FROM student ORDER BY Project_Group ASC, Section DESC, Marks DESC;