SESSION NAMEAdvance Select - 2

QUESTION NAMEHigher than 75 Marks

TABLE DESCRIPTION:

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. 

CODE:

select Name from STUDENTS
where marks > 75
ORDER BY SUBSTR(Name,LENGTH(Name)-2,3),ID;