刷一道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:
Solution:
select Name from Students where Marks > 75 order by substring(Ucase(Name), -3) asc, id asc;
Comments
Post a Comment