7.Solution of Hacker Rank The Report

Author: neptune | 23rd-Jan-2023 | Views: 3237
#SQL #Hackerrank

The Report

Problem Statement : You are given two tables: Students and Grades. Students contain three columns ID, Name and Marks.

Sample Input data of Students table:

Grades contains the following data:


Ketty gives Eve a task to generate a report containing three columns: Name, Grade and Mark. Ketty doesn't want the NAMES of those students who received a grade lower than 8. 

The report must be in descending order by grade i.e. higher grades are entered first. If there is more than one student with the same grade (8-10) assigned to them, order those particular students by their name alphabetically. 

Finally, if the grade is lower than 8, use "NULL" as their name and list them by their grades in descending order. If there is more than one student with the same grade (1-7) assigned to them, order those particular students by their marks in ascending order.

Write a query to help Eve.

Expected output :

Maria 10 99

Jane 9 81 

Julia 9 88 

Scarlet 8 78

NULL 7 63

NULL 7 68


Solution :

For this challenge, we must:

  1. Use an if condition to assign NULL for lower grades.

  2. Assign grades using the WHERE and BETWEEN clause so that records where Marks between MIN_Mark and Max_Mark joins and return a joined table.


Query :

SELECT IF(GRADE < 8, NULL, NAME), GRADE, MARKS

FROM STUDENTS JOIN GRADES

WHERE MARKS BETWEEN MIN_MARK AND MAX_MARK

ORDER BY GRADE DESC, NAME;


Output:


Hope you learn something !!!

If you have any questions let me know in the comment section.





Related Blogs
5. Solution of Hacker Rank Weather Observation Station 8.
Author: neptune | 23rd-Jan-2023 | Views: 4436
#SQL #Hackerrank
Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last characters. Your result cannot contain duplicates...

4. Solution of Hacker Rank Weather Observation Station 6.
Author: neptune | 23rd-Jan-2023 | Views: 3468
#SQL #Hackerrank
Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates...

3. Solution of Hacker Rank Weather Observation Station 4.
Author: neptune | 23rd-Jan-2023 | Views: 2375
#SQL #Hackerrank
Problem Statement : Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table...

The Blunder | Hackerrank
Author: neptune | 21st-Nov-2022 | Views: 2038
#SQL #Hackerrank
Write a query calculating the amount of error (i.e.: average monthly salaries), and round it up to the next integer...

6. Solution of Hacker Rank Employee Salaries.
Author: neptune | 23rd-Jan-2023 | Views: 1295
#SQL #Hackerrank
Problem Statement : Query that prints a list of employee names for employees in Employee having a salary greater than $2000 per month and experience less than 10 months...

1. Basic SQL Select Query of Hacker Rank.
Author: neptune | 20th-Apr-2022 | Views: 894
#SQL #Hackerrank
Problem Statement : Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA...

The PADS | Hackerrank
Author: neptune | 21st-Nov-2022 | Views: 601
#SQL #Hackerrank
Problem Statement: Generate the following two result sets: 1. Query an alphabetically ordered list of all names in OCCUPATIONS, immediately followed by the first letter of each profession...

2. Solution of Hacker Rank Weather Observation Station 3.
Author: neptune | 23rd-Jan-2023 | Views: 573
#SQL #Hackerrank
Problem Statement : Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude duplicates from the answer...

8.SQL Query to Count odd and even digits in a number
Author: neptune | 24th-Apr-2022 | Views: 414
#SQL #Hackerrank
Problem Statement : Write a query that counts odd and even digits in a number...

Create MySQL Database from Scratch
Author: neptune | 31st-Aug-2022 | Views: 345
#SQL
How to create a DB in MySQL Server from Scratch? Step1: Open MySQL Workbench or CMD Prompt...

30+ SQL Interview Questions
Author: neptune | 05th-Jan-2023 | Views: 252
#Interview #SQL
Data Definition Language (DDL) – It allows end-users to CREATE, ALTER, and DELETE database objects...

Top Earners | HackerRank
Author: neptune | 23rd-Nov-2022 | Views: 155
#SQL #Hackerrank
Write a query to find the maximum total earnings for all employees as well as the total number of employees who have maximum total earnings...

View More