Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Window Functions Experience
00:00
5 left

SQL Window Functions Experience

MediumSQL · PostgreSQL

Problem

What is your experience with SQL window functions?

Using the provided regions and yield_observations tables, demonstrate that experience by calculating each region's average yield for 2024 and its rank within its country. Include regions without a valid 2024 yield.

Output

  1. One row per region, with country, region_name, average_yield, and country_rank.
  2. Rank higher average yields first, share ranks for ties, place missing averages last, and sort by country, rank, and region name.

Schema

regions
ColumnTypeDescription
region_idPKINTUnique region identifier
countryVARCHAR(80)Country containing the region
region_nameVARCHAR(120)Name of the agricultural region
yield_observations
ColumnTypeDescription
observation_idPKINTUnique observation identifier
region_idINTReferenced region
observation_dateDATEDate of the yield observation
yield_tonnesDECIMAL(10,2)Observed yield in tonnes
Tablesregionsyield_observations
Interviewer

Your question is SQL Window Functions Experience. Start with the requirements and the two tables in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.