Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Indexing
00:00
5 left

SQL Indexing

HardSQL · PostgreSQL

Problem

How would you think about SQL indexing, and what factors would you consider when choosing indexes?

Using the supplied PostgreSQL schema, write a representative query for the workload and explain which indexes you would consider, including column order, partial indexes, covering indexes, selectivity, write overhead, and how you would validate the plan.

Output

  1. One row per active account with qualifying open orders
  2. Columns: account_id, region, open_order_count, open_notional
  3. Ignore orders with a NULL executed_at
  4. Sort by open_notional descending, then account_id ascending

Schema

client_accounts
ColumnTypeDescription
account_idPKINTUnique client account identifier
regionVARCHAR(40)Account operating region
is_activeBOOLEANWhether the account is active
trade_orders
ColumnTypeDescription
order_idPKINTUnique trade order identifier
account_idINTClient account associated with the order
symbolVARCHAR(12)Security ticker symbol
sideVARCHAR(12)Order direction
statusVARCHAR(12)Current order status
executed_atTIMESTAMPExecution timestamp
notionalNUMERIC(18,2)Order notional value
Tablesclient_accountstrade_orders
Interviewer

Your question is SQL Indexing. 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.