Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Employee Dataset SQL Queries

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

Your question is Employee Dataset SQL Queries. 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

Write SQL queries on an employee dataset containing columns like eid, name, manager_yes_no, report_to_whom, date_hired.

Asked in the Technical Phone Screen stage. The hiring manager pasted SQL questions one by one into an internal Amazon online text document while the candidate coded responses live.

Task

Write PostgreSQL queries against the employee table to identify reporting relationships and hire-date patterns.

Requirements

  1. Return employees who are managers and the number of direct reports they have.
  2. Return employees who do not report to anyone, based on report_to_whom being NULL.
  3. Return employees hired in the earliest month present in the data, ordered by hire date.

Output

Return one result set for each requirement, with the appropriate columns and ordering.

Schema

employee
ColumnTypeDescription
eidPKINTUnique employee identifier
nameVARCHAR(100)Employee full name
manager_yes_noVARCHAR(3)Whether the employee is a manager, values like Yes or No
report_to_whomINTEmployee ID of the direct manager, nullable for top-level employees
date_hiredDATEHire date
Tablesemployee
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results