Answers for "mysql order specific records at the top"

SQL
0

mysql order specific records at the top

SELECT id, name, grade
FROM Students
ORDER BY FIELD(grade, "A") DESC, name ASC;
Posted by: Guest on April-06-2022

Code answers related to "mysql order specific records at the top"

Code answers related to "SQL"

Browse Popular Code Answers by Language