Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL: Duplicate Rows and Top Percent

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

Your question is SQL: Duplicate Rows and Top Percent. 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

Altimetrik's Workforce Directory team needs a validation query for employee extracts. Using the tables below, write PostgreSQL SQL that produces both a deliberately duplicated employee row and the first 50% of eligible workforce records.

Requirements

  1. Join employees to departments and retain only active employees with a matching department.
  2. Return the row for employee_id = 104 exactly twice using UNION ALL.
  3. Return the first half of eligible employees, ordered by ascending employee_id. Use NTILE(2) so the query remains data-driven.
  4. Add an operation column with duplicated or first_half, and sort the final result by operation and employee ID.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee full name
department_idINTReferenced department identifier
employment_statusVARCHAR(20)Current employment status
hire_dateDATEDate the employee joined
emailVARCHAR(150)Work email address
departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department display name
Tablesemployeesdepartments
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results