Problem Statement
A description of the problem can be found on Hackerrank.
Solution
I created solution in:
All solutions are also available on my GitHub.
SQL
1 2 3 4 5 6 |
select name from ( select name, substr(name, length(name)-2) as sub_name from Students where marks > 75 order by sub_name, id asc ); |