diff --git a/mysql/more-than-75-marks/solution.sql b/mysql/more-than-75-marks/solution.sql new file mode 100644 index 0000000..f8f7036 --- /dev/null +++ b/mysql/more-than-75-marks/solution.sql @@ -0,0 +1,5 @@ +SELECT Name +FROM STUDENTS +WHERE Marks > 75 +ORDER BY RIGHT(Name, 3), + ID ASC \ No newline at end of file