Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Average Sales Per Customer
00:00
5 left

SQL Average Sales Per Customer

EasySQL · PostgreSQL

Problem

Aimpoint Digital analysts need a customer-level sales summary for a client reporting workflow. Write a PostgreSQL query that calculates the average sale amount for every identified customer.

Requirements

  1. Group sales by customer_id and calculate the average non-null sale_amount.
  2. Exclude sales records that do not have an identified customer, then order customers by average sale amount from highest to lowest.

Schema

sales
ColumnTypeDescription
sale_idPKINTUnique sales transaction identifier
customer_idINTCustomer identifier associated with the sale
sale_amountDECIMAL(10,2)Monetary value of the sale
sale_dateDATEDate on which the sale occurred
Tablessales
Interviewer

Your question is SQL Average Sales Per Customer. 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.