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

SQL Window Functions Basics

MediumSQL · PostgreSQL

Problem

What is a SQL window function, and what is the difference between using it with WHERE versus HAVING or filtering after the window calculation?

Use the provided claims table to demonstrate these evaluation stages in one query. Include only paid claims from 2025, retain members whose total paid amount is at least 500, rank those members by total, and filter to the top rank.

Output

  1. One row per retained member with member_id, total_paid, and member_rank
  2. Include only members with member_rank equal to 1
  3. Order by member_id ascending

Schema

claims
ColumnTypeDescription
claim_idPKINTUnique claim identifier
member_idINTMember associated with the claim
claim_dateDATEDate the claim was submitted
statusVARCHAR(20)Claim processing status
allowed_amountDECIMAL(10,2)Allowed amount for the claim
Tablesclaims
Interviewer

Your question is SQL Window Functions Basics. Start with the requirements and the one table 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.