CBSE Class 12 Informatics Practices Question 54 of 90

Querying Using SQL — Question 4

Back to all questions
4
Question

Question 4

Write an example query that sorts on three columns.

Answer
SELECT * FROM DATA
ORDER BY marks ASC, section DESC, term ASC;