Anusha Murali

Logo

Please see github.com/anusha-murali for all of my repositories.

View GitHub Profile

36. Higher than 75 Marks


Query the Name of any student in STUDENTS who scored higher than 75 Marks. Order your output by the last three characters of each name. If two or more students both have names ending in the same last three characters (i.e.: Bobby, Robby, etc.), secondary sort them by ascending ID.

The STUDENTS table is described as follows:

36_1

The Name column only contains uppercase (A-Z) and lowercase (a-z) letters.

Sample Input

36_2

Sample Output

Ashley
Julia
Belvet

Explanation

Only Ashley, Julia, and Belvet have Marks > 75. If you look at the last three characters of each of their names, there are no duplicates and ‘ley’ < ‘lia’ < ‘vet’.

Solution


Back to problems


anusha-murali.github.io