Computer Science, asked by tanmayapradhani2003, 7 months ago

write a SQL query to order the students table. ​

Answers

Answered by kvarunkumar1729
0

Can you say the full form of SQL???

Answered by allysia
1

Answer:

#Assuming that the name of the table here was Student and had a roll number column/filed in there

For ascending:

SELECT * from Students order by Roll asc;

For descending:

SELECT * from Students order by Roll desc;

Explanation:

Using just order by Roll in the end will arrange them in ascending order using roll column

Similar questions