Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Extract Active Customer Contact Data

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

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

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
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results