Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Customers Who Like Both Fruits
00:00
5 left

Customers Who Like Both Fruits

EasySQL · PostgreSQL

Problem

Given a table of customers and their chosen food items, write a query to select customers who like both oranges and apples.

Use the provided customer and preference data, and treat food names as the values stored in the preference table. Return each qualifying customer once.

Output

  1. One row per qualifying customer with columns customer_id and customer_name.
  2. Include only customers who like both oranges and apples, sorted by customer_id ascending.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer's name
customer_foods
ColumnTypeDescription
preference_idPKINTUnique food preference identifier
customer_idINTCustomer associated with the preference
food_itemVARCHAR(50)Food item selected by the customer
Tablescustomerscustomer_foods
Interviewer

Your question is Customers Who Like Both Fruits. 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.