Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Fraud Detection: Two Cities

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

Your question is SQL Fraud Detection: Two Cities. Start with the requirements and the two 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

Business Context

Capital One's fraud analytics team wants to flag accounts showing rapid geographic movement. A potential alert occurs when the same account has transactions in different cities within one hour.

Task

Write a PostgreSQL query that returns every qualifying pair of transactions for valid Capital One accounts.

Requirements

  1. Match transactions belonging to the same account, while avoiding pairing a transaction with itself or returning the same pair twice.
  2. Keep only pairs occurring within one hour, including exactly one hour, where the cities are different.
  3. Exclude transactions with a missing city and transactions belonging to an account absent from accounts.
  4. Return the account ID, both transaction IDs, both timestamps, both cities, and the elapsed minutes. Sort by account ID and the first transaction timestamp.

Schema

accounts
ColumnTypeDescription
account_idPKINTUnique Capital One account identifier
account_nameVARCHAR(100)Account holder label
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
account_idINTAccount associated with the transaction
transaction_tsTIMESTAMPTransaction timestamp
cityVARCHAR(100)City where the transaction occurred
amountNUMERIC(12,2)Transaction amount
Tablesaccountstransactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results