Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Python and Data Manipulation
00:00
5 left

Python and Data Manipulation

MediumSQL · PostgreSQL

Problem

Describe Python and how you handle data manipulation.

For this PostgreSQL exercise, demonstrate the same data preparation principles by producing a clean user-level summary from the provided tables. Include only active users and treat completed records with non-null, non-negative amounts as valid.

Output

  1. One row per active user, including users without valid records
  2. Columns: user_id, user_name, completed_count, total_amount, and latest_completed_date
  3. Sort by user_id ascending

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
user_nameVARCHAR(100)User display name
account_statusVARCHAR(20)Current account status
records
ColumnTypeDescription
record_idPKINTUnique record identifier
user_idINTUser associated with the record
statusVARCHAR(20)Processing status of the record
amountNUMERIC(10,2)Recorded amount
record_dateDATEDate associated with the record
Tablesusersrecords
Interviewer

Your question is Python and Data Manipulation. 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.