Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Optimize Complex Query for Compute Efficiency

HardSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Optimize Complex Query for Compute Efficiency. Start with the requirements and the three tables on the right.

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.

Problem

A data analytics team at Acme Corp is facing high compute costs due to a complex SQL query that aggregates sales data across multiple tables. Write a SQL query that optimizes the original query to minimize resource consumption while still delivering the required results.

Requirements

  1. Use CTEs to break down the query into manageable parts.
  2. Optimize JOIN operations to reduce data volume.
  3. Ensure the final result set includes total sales by category and month.
  4. Use window functions to calculate the running total of sales per category.

Schema

sales
ColumnTypeDescription
idPKINTPrimary key
category_idINTForeign key referencing categories
amountDECIMAL(10,2)Transaction amount
transaction_dateDATEDate of transaction
categories
ColumnTypeDescription
idPKINTPrimary key
nameVARCHAR(255)Category name
customers
ColumnTypeDescription
idPKINTPrimary key
nameVARCHAR(255)Customer name
signup_dateDATEDate of customer signup
Tablessalescategoriescustomers
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results