Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Average Claim Amount by Month
00:00
5 left

Average Claim Amount by Month

EasySQL · PostgreSQL

Problem

Write a SQL query to find the average claim amount by month.

Use the claims table and include every month represented in the data. Ignore claim records where the claim amount is NULL.

Output

  1. One row per calendar month
  2. Columns: claim_month, average_claim_amount
  3. Sort by claim_month in ascending chronological order

Schema

claims
ColumnTypeDescription
claim_idPKINTUnique identifier for the claim
claim_dateDATEDate the claim was filed
claim_amountDECIMAL(12,2)Financial amount associated with the claim
Tablesclaims
Interviewer

Your question is Average Claim Amount by Month. 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.