Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Writing Business-Flavored SQL
00:00
5 left

Writing Business-Flavored SQL

MediumSQL · PostgreSQL

Problem

Can you provide an example of a business-flavored SQL query you have written for American Express operations or transaction processing?

Using the supplied American Express merchant and transaction tables, return qualifying merchant activity for January 2025. Include merchants with at least two transactions during the period and calculate their approval metrics.

Output

  1. One row per qualifying merchant with merchant_id, merchant_name, transaction_count, approved_transaction_count, approved_amount, and approval_rate
  2. Exclude merchants with fewer than two January transactions
  3. Order by approved_amount descending, then merchant_id ascending

Schema

merchants
ColumnTypeDescription
merchant_idPKINTUnique merchant identifier
merchant_nameVARCHAR(100)Merchant display name
merchant_categoryVARCHAR(50)Merchant category
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
merchant_idINTMerchant associated with the transaction
transaction_dateDATEDate the transaction was processed
amountDECIMAL(12,2)Transaction amount in US dollars
statusVARCHAR(20)Transaction processing status
Tablesmerchantstransactions
Interviewer

Your question is Writing Business-Flavored SQL. 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.