Write a SQL query to order the (student ID, marks) table in descending order of the marks

 


In this post, we are going to Write a SQL query to order the (student ID, marks) table in descending order of the marks in "MySQL". This project is given by CBSE in term II Practical File.

Here is the code:

select student_id, marks from student order by marks decs;

1 Comments

Previous Post Next Post