Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Week-Over-Week Shrink
00:00
5 left

SQL for Week-Over-Week Shrink

MediumSQL · PostgreSQL

Problem

Nordstrom operations managers review inventory shrinkage by region and department. Write a PostgreSQL query that compares each department's shrinkage rate with the immediately preceding week.

Shrinkage units are defined as expected_units - counted_units. The shrinkage rate is shrinkage units divided by expected units, expressed as a percentage.

Requirements

  1. Aggregate inventory counts by department and Monday-based calendar week.
  2. Return only departments with a non-null region and a prior week available for comparison.
  3. Show the current shrinkage rate, prior week's shrinkage rate, and the week-over-week change in percentage points.
  4. Order results by region, department name, and week start.

Schema

departments
ColumnTypeDescription
department_idPKINTEGERUnique department identifier
regionVARCHAR(50)Nordstrom operating region
department_nameVARCHAR(100)Department name
inventory_counts
ColumnTypeDescription
count_idPKINTEGERUnique inventory count identifier
department_idINTEGERDepartment associated with the count
count_dateDATEDate of the physical inventory count
expected_unitsINTEGERUnits expected according to inventory records
counted_unitsINTEGERUnits physically counted
audit_noteVARCHAR(200)Optional inventory audit note
Tablesdepartmentsinventory_counts
Interviewer

Your question is SQL for Week-Over-Week Shrink. 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.