Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Aggregating Sales by Region
00:00
5 left

Aggregating Sales by Region

EasySQL · PostgreSQL

Problem

Write a SQL query to aggregate sales data by region.

Use the sales_transactions table. Return one row for each region, including rows where the region is NULL.

Output

  1. Columns: region and total_sales
  2. One row per region
  3. Sort by region in ascending order, with NULL regions last

Schema

sales_transactions
ColumnTypeDescription
sale_idPKINTUnique identifier for the sale
regionVARCHAR(50)Sales region
sales_amountDECIMAL(12,2)Sales amount for the transaction
Tablessales_transactions
Interviewer

Your question is Aggregating Sales by Region. 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.