The Blunder SQL Hacker Rank Solution

Hello coders, In this post, you will learn how to solve the The Blunder SQL Hacker Rank Solution. This problem is a part of the SQL Hacker Rank series.

The Blunder SQL Hacker Rank Solution
The Blunder SQL Hacker Rank Solution

Problem

Samantha was tasked with calculating the average monthly salaries for all employees in the EMPLOYEES table, but did not realize her keyboard’s  key was broken until after completing the calculation. She wants your help finding the difference between her miscalculation (using salaries with any zeros removed), and the actual average salary.

Write a query calculating the amount of error (i.e.:  average monthly salaries), and round it up to the next integer.

Input Format

The EMPLOYEES table is described as follows:

The Blunder SQL Hacker Rank Solution

Note: Salary is per month.

Constraints

.

Sample Input

The Blunder SQL Hacker Rank Solution

Sample Output

2061

Explanation

The table below shows the salaries without zeros as they were entered by Samantha:

The Blunder SQL Hacker Rank Solution

Samantha computes an average salary of . The actual average salary is .

The resulting error between the two calculations is . Since it is equal to the integer , it does not get rounded up.

The Blunder SQL Hacker Rank Solution

SELECT CEIL(AVG(Salary)-AVG(REPLACE(Salary,'0','')))
FROM  EMPLOYEES

Disclaimer: The above Problem (The Blunder) generated by Hackerrank but the Solution is Provided by Chase2Learn. This tutorial is only for Educational and Learning purposes.

Sharing Is Caring