Higher Than 75 Marks SQL – Hacker Rank Solution


Problem

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.

Input Format

The STUDENTS table is described as follows:

 

The Name column only contains uppercase (AZ) and lowercase (az) letters.

Sample Input

Sample Output

Ashley
Julia
Belvet

Explanation

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



Higher Than 75 Marks SQL – Hacker Rank Solution

Code:

SELECT Name FROM STUDENTS WHERE Marks > 75 ORDER BY RIGHT(Name, 3), ID;


Disclaimer: The above Problem (Higher Than 75 Marks) generated by Hackerrank but the Solution is Provided by MultiplexCoder. This tutorial is only for Educational and Learning purposes.


 Tags:    hackerrank sql questions and answers | big companies hackerrank sql solutions | student analysis sql hackerrank solution | challenges sql hackerrank solution | hackerrank sql basic certification solutions | product amount details hackerrank solution | hackerrank sql basic join solutions | hackerrank-sql certification solutions | codechef | google | 2021

Previous
Next Post »