Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL: Chatbot Then Human Within 24h
00:00
5 left

SQL: Chatbot Then Human Within 24h

MediumSQL · PostgreSQL

Problem

Given a table of customer interactions, write a query to identify users who interacted with the chatbot and then called a human agent within 24 hours at [24]7.ai.

Use the customer_interactions table. A human-agent interaction must occur after the chatbot interaction and no later than 24 hours afterward.

Output

  1. Return one row per qualifying user with the column user_id.
  2. Sort results by user_id ascending.

Schema

customer_interactions
ColumnTypeDescription
interaction_idPKINTUnique identifier for the interaction
user_idINTIdentifier of the customer
interaction_typeVARCHAR(40)Interaction channel or event type
interaction_timeTIMESTAMPTimestamp when the interaction occurred
Tablescustomer_interactions
Interviewer

Your question is SQL: Chatbot Then Human Within 24h. 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.