Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL: Subqueries With Aggregates
00:00
5 left

SQL: Subqueries With Aggregates

MediumSQL · PostgreSQL

Problem

Write a SQL query using subqueries to filter a dataset based on an aggregated condition.

Use the provided customers and transactions tables. Return customers whose total transaction amount is greater than the average total transaction amount across customers with valid transactions. Exclude unmatched transactions.

Output

  1. One row per qualifying customer.
  2. Columns: customer_id, customer_name, and total_amount.
  3. Sort by total_amount descending, then customer_id ascending.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer name
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_idINTCustomer associated with the transaction
amountDECIMAL(10,2)Transaction amount
Tablescustomerstransactions
Interviewer

Your question is SQL: Subqueries With Aggregates. 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.