Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Professional vs Non-Professional Hosts

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

Your question is Professional vs Non-Professional Hosts. Start with the requirements and the two tables 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

Turing wants to compare listing prices from professional and non-professional hosts on its accommodation marketplace. A host is professional when they have listings in more than 5 distinct values of neighbourhood_cleansed.

Write a PostgreSQL query that compares the average listing price for both host classifications.

Requirements

  1. Count distinct non-null neighbourhood_cleansed values for each host.
  2. Classify hosts with more than 5 locations as professional; classify all other hosts with listings as non_professional.
  3. Return the average listing price for each classification and the difference between the professional and non-professional averages. Round monetary results to two decimal places.

Schema

hosts
ColumnTypeDescription
host_idPKINTUnique host identifier
host_nameVARCHAR(100)Host display name
listings
ColumnTypeDescription
listing_idPKINTUnique listing identifier
host_idINTHost who owns the listing
neighbourhood_cleansedVARCHAR(100)Standardized neighborhood name
priceNUMERIC(10,2)Nightly listing price
Tableshostslistings
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results