문제 풀이 링크: https://www.hackerrank.com/challenges/the-blunder/problem?isFullScreen=true The Blunder | HackerRankQuery the amount of error in Sam's result, rounded up to the next integer.www.hackerrank.com⌨️ The Blunder 문제 요약EMPLOYEES 테이블의 salary 컬럼을 기반으로실제 평균 월급: AVG(salary)잘못된 평균 월급: salary에서 숫자 0을 제거한 값으로 계산한 평균두 평균의 차이를 구하고 결과는 올림(CEIL) 해서 정수로 출력정답 풀이CEIL: 올림 처리 함수로, 소수점을 올림하여 정수로 반환CAST(REPLAC..