Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Average Feedback Score by Office

EasySQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Average Feedback Score by Office. Start with the requirements and the one table on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

You are given a table of feedback submissions from a McKinsey & internal platform. Write a SQL query to return each office_name and its average score, considering only submitted scores that are not NULL. Sort the results by average score in descending order, and then by office_name alphabetically.

Schema

feedback_submissions
ColumnTypeDescription
submission_idPKINTUnique feedback submission ID
office_nameVARCHAR(100)Office where the feedback was submitted
scoreINTFeedback score on a 1-5 scale; may be NULL
submitted_atDATEDate the feedback was submitted
Tablesfeedback_submissions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results