刷一道sql 题

Query the Name of any student in STUDENTS who scored higher than  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.

Solution:

select Name from Students where Marks > 75 order by substring(Ucase(Name), -3) asc, id asc;


Comments

Popular posts from this blog

data science 准备经验 II

data science 准备经验