Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Last Six Months Joins

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

Your question is SQL Last Six Months Joins. Start with the requirements and the two tables 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

The Lasalle Network needs a current list of employees who joined within the six months before the query runs. Write a PostgreSQL query that uses the employee hire_date and includes department information when available.

Requirements

  1. Return employees whose hire_date is within the previous six calendar months, including the boundary date and excluding future dates.
  2. Include employees even when their department is missing or their department record is unmatched.
  3. Return the employee ID, name, hire date, department name, and employment status, ordered from newest hire to oldest hire.

For the sample data, assume the query runs on 2026-08-29. In production, use PostgreSQL's CURRENT_DATE.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee's full name
hire_dateDATEDate the employee joined The Lasalle Network
department_idINTAssociated department identifier
employment_statusVARCHAR(20)Current employment status
departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
Tablesemployeesdepartments
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results