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;
Hi, New post of CBSE Projects from tomorrow.
ReplyDelete