From c4a694ded01df8b2c02d5e9455bda97d80e69199 Mon Sep 17 00:00:00 2001 From: lub Date: Sat, 18 May 2019 12:47:16 +0200 Subject: [PATCH] mysql: add more-than-75-marks --- mysql/more-than-75-marks/solution.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 mysql/more-than-75-marks/solution.sql 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