Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Extract Active Customer Contact Data
00:00
5 left

Extract Active Customer Contact Data

EasySQL · PostgreSQL

Problem

You are given a customer table from a Dell Technologies marketing database and need to extract customer records for outreach. Write a SQL query that returns each active customer's ID, full name, email, city, and signup date. Only include customers whose status is 'Active', and sort the results by signup_date from newest to oldest.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
full_nameVARCHAR(100)Customer full name
emailVARCHAR(150)Customer email address
cityVARCHAR(80)Customer city
statusVARCHAR(20)Customer account status
signup_dateDATEDate the customer signed up
Tablescustomers
Interviewer

Your question is Extract Active Customer Contact Data. Start with the requirements and the one table 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.