Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
MySQL Employee Join Query
00:00
5 left

MySQL Employee Join Query

EasySQL · PostgreSQL

Problem

Write a MySQL query to retrieve all the employees who joined within three years from an employee table.

Use PostgreSQL syntax for the solution. Interpret this as the three-year period ending today, excluding future joining dates and employees with missing joining dates.

Output

  1. One row per qualifying employee.
  2. Columns: employee_id, employee_name, and joined_date.
  3. Order by joined_date descending, then employee_id ascending.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee's full name
joined_dateDATEDate the employee joined the organization
Tablesemployees
Interviewer

Your question is MySQL Employee Join Query. 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.